Files
my-os-project2/ulib/system/system.c
2025-09-06 11:47:01 +02:00

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