caos-with-snake/syscall.h
2022-12-14 17:10:34 +03:00

10 lines
107 B
C

#pragma once
enum {
T_SYSCALL = 0x84,
SYS_exit = 0,
SYS_greet = 1,
};
int syscall(int call, int arg);