4 #define MAX_SYSCALLS 10
6 // Definiciones de grupos
8 #define SYS_CONSOLE (1 << 16)
9 #define SYS_FLOW (2 << 16)
10 #define SYS_TIMER (3 << 16)
12 // Funciones de grupo PROCESS
17 // Funciones de grupo CONSOLE
22 // Funciones de grupo TIMER
26 int sys_no_existe (dword numero
);
28 // Funciones de libreria
32 int sys_gets (char *str
);
33 int sys_print (void *buff
, size_t largo
);
37 int sys_exec (char *nombre
);
40 int sys_sleep(int segundos
);