quark/src/kernel/main.c

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

2022-06-17 00:44:56 +02:00
#include <stdint.h>
#include "stdio.h"
2022-06-17 00:44:56 +02:00
void __attribute__((cdecl)) kmain(uint64_t magic, uint64_t addr){
printf("Hello world!\n\x1b[32m:D\x1b[0m\n");
2022-06-17 12:28:24 +02:00
for(;;); // Halt here
2022-06-17 00:44:56 +02:00
}