Files
my-os-project2/ulib/system/system.c
2025-09-04 23:20:30 +02:00

10 lines
183 B
C

#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);
}