caos-with-snake/kernel.c
Alexander Myltsev 6e5222e2e3 Initial commit
2023-01-13 13:07:06 +04:00

13 lines
176 B
C

#include "console.h"
#include "drivers/vga.h"
#include "drivers/uart.h"
void _start() {
uartinit();
vga_clear_screen();
printk("\nYABLOKO\n");
asm("hlt");
}