blob: 52345796fdb2a68a9e10646682619cb3fcd3b39a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DEF_SYSCALL_WTF_H
#define DEF_SYSCALL_WTF_H
#include <types.h>
//Three basic syscalls, just for testing
void putch(char);
void sleep(u32int);
void write_hex(u32int);
void threadFinishedSyscall(u32int);
u32int syscall(u32int n, u32int a, u32int b = 0, u32int c = 0, u32int d = 0, u32int e = 0);
#endif
|