quark/src/kernel/main.c

8 líneas
179 B
C
Original Vista normal Històric

2022-06-17 00:44:56 +02:00
#include <stdint.h>
2022-06-17 12:28:24 +02:00
#include "drivers/vga.h"
2022-06-17 00:44:56 +02:00
void __attribute__((cdecl)) kmain(uint64_t magic, uint64_t addr){
2022-06-17 13:27:22 +02:00
print_string("Hello world!\n:D");
2022-06-17 12:28:24 +02:00
for(;;); // Halt here
2022-06-17 00:44:56 +02:00
}