caos-with-snake/syscall.h

10 lines
107 B
C
Raw Normal View History

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