14 lines
164 B
C
14 lines
164 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
enum {
|
|
T_SYSCALL = 0x84,
|
|
SYS_exit = 0,
|
|
SYS_greet = 1,
|
|
SYS_putc = 2,
|
|
SYS_puts = 3,
|
|
};
|
|
|
|
int syscall(int call, uintptr_t arg);
|