blob: 6b550b711d9a20276006efa3b6ecc21beceda792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <kernel/con.h>
#include <kernel/sched.h>
#include <kernel/sys.h>
#include <stdint.h>
void kmain(void) {
con_init();
printk("Kernel booting...\n");
printk("Kernel booted!\n\n");
sched_init();
}
|