kern

annotate src/sysnum.h @ 44:7bc74736c7e8

added the first test process code and system call numbers header
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 25 Jul 2011 11:29:57 +0300
parents
children
rev   line source
nuclear@44 1 #ifndef SYSNUM_H_
nuclear@44 2 #define SYSNUM_H_
nuclear@44 3
nuclear@44 4 #define SYSCALL_INT 0x80
nuclear@44 5
nuclear@44 6 #define SYS_EXIT 0
nuclear@44 7 #define SYS_HELLO 1
nuclear@44 8 #define SYS_SLEEP 2
nuclear@44 9
nuclear@44 10 #endif /* SYSNUM_H_ */