1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef MELVIX_SYSCALL_H #define MELVIX_SYSCALL_H extern void idt_syscall(); void syscalls_install(); uint32_t sys_write(char *buf); uint32_t sys_writec(char ch); uint32_t sys_read(char *buf); uint32_t sys_readc(); #endif