quark/src/kernel/main.c

10 líneas
297 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 12:28:24 +02:00
// Print a light cyan 'X' over green on the top left corner
set_char(0, 0, 'X');
set_color(0, 0, VGA_COLOR_BG_GREEN | VGA_COLOR_FG_LIGHT_CYAN);
for(;;); // Halt here
2022-06-17 00:44:56 +02:00
}