13 lines
236 B
C
13 lines
236 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
|
|
#define _NR_delay_ticks 4
|
|
#define _NR_mmap 5
|
|
|
|
#endif /* MINIOS_SYSCALL_H */
|