2020301918-os/inc/syscall.h
2022-10-29 19:48:58 +08:00

11 lines
190 B
C

#ifndef MINIOS_SYSCALL_H
#define MINIOS_SYSCALL_H
// 系统调用号
#define _NR_get_ticks 0
#define _NR_get_pid 1
#define _NR_read 2
#define _NR_write 3
#endif /* MINIOS_SYSCALL_H */