Port the SB128 code to AROS.
[AROS.git] / rom / kernel / kernel_syscall.h
blob813cb11729c61a78b549be4e529f4d3b3b255c0d
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_RDMSR 0x00B
21 #define SC_REBOOT 0x100
23 #endif