minimalist kernel and OS. targets x86_64 and the pinephone (aarch64)
osdev kernel
at master 145 B view raw
1#include <stdint.h> 2#include <stddef.h> 3#include <stdbool.h> 4#include <limine.h> 5#include <hal/main.h> 6 7 8void kmain(void) { 9 halt_forever(); 10}