10 lines
207 B
C
10 lines
207 B
C
#include <stdint.h>
|
|
#include <system/system.h>
|
|
#include <syscall/syscall.h>
|
|
#include <sysdefs/syscall.h>
|
|
|
|
void debugprint(const char *string) {
|
|
syscall(SYS_DEBUGPRINT, (uint64_t)string, 0, 0, 0, 0, 0);
|
|
}
|
|
|