caos-with-snake/kernel.c

9 lines
144 B
C
Raw Normal View History

2022-11-14 00:23:42 +03:00
#include "vga.h"
2022-11-17 23:16:57 +03:00
void _start() {
2022-11-14 00:23:42 +03:00
vga_clear_screen();
2022-11-14 01:01:22 +03:00
for (int i = 0; i < 24; i++) {
vga_print_string("hello world\n");
}
2022-09-21 18:25:06 +03:00
}