1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <syscall.h> #include <graphics/graphics.h> void user_main() { char hello[] = "> Successfully switched to usermode!\n"; syscall_write(hello); init_framebuffer(); while (1) {}; /*while (1) { char *key = malloc(1); syscall_readc(key); syscall_writec(key); };*/ }