Newer
Older
honey-os / src / userland / loader / main.c
@biosfood biosfood on 23 Jul 2022 215 bytes add events
#include <hlib.h>
#include <stdint.h>

int32_t main() {
    loadFromInitrd("log");
    log("hello world");
    log("honey os is alive :)");
    loadFromInitrd("pic");
    loadFromInitrd("keyboard");
    return 0;
}