Minor fixes to comments.
[AROS.git] / rom / kernel / kernel_syscall.h
blob9ff0437304d66aee1b2e36cc1222d922bab90187
1 /*
2 * List of all possible syscalls. They are private and there's no need
3 * to implement all of them.
4 */
6 #ifndef KERNEL_SYSCALL_H_
7 #define KERNEL_SYSCALL_H_
9 #define SC_CAUSE 0x000
10 #define SC_DISPATCH 0x001
11 #define SC_SWITCH 0x002
12 #define SC_SCHEDULE 0x003
13 #define SC_CLI 0x004
14 #define SC_STI 0x005
15 #define SC_SUPERSTATE 0x006
16 #define SC_ISSUPERSTATE 0x007
17 #define SC_INVALIDATED 0x008
18 #define SC_RTAS 0x009
19 #define SC_SUPERVISOR 0x00A
20 #define SC_REBOOT 0x100
22 #endif