C userspace programs
This commit is contained in:
9
ulib/system/system.c
Normal file
9
ulib/system/system.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdint.h>
|
||||
#include <system/system.h>
|
||||
#include <syscall/syscall.h>
|
||||
|
||||
|
||||
void sys_debugprint(const char *string) {
|
||||
syscall(SYS_DEBUGPRINT, (uint64_t)string, 0, 0, 0, 0, 0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user