limine/main.c

16 lines
247 B
C
Raw Normal View History

2019-05-15 07:08:56 +03:00
asm (
".section .entry\n\t"
2019-05-15 07:08:56 +03:00
"xor dh, dh\n\t"
"push edx\n\t"
"call main\n\t"
);
#include <drivers/vga_textmode.h>
2019-05-15 07:08:56 +03:00
void main(int boot_drive) {
// TODO
init_vga_textmode();
text_write("hello world", 11);
2019-05-15 07:08:56 +03:00
for (;;);
}