caos-with-snake/syscall.h
2023-01-31 13:17:22 +04:00

10 lines
107 B
C

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