mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-20 17:27:24 +00:00
12 lines
175 B
C
12 lines
175 B
C
#include <comus/cpu.h>
|
|
#include <comus/memory.h>
|
|
#include <lib.h>
|
|
#include <stdio.h>
|
|
|
|
void main(void)
|
|
{
|
|
cpu_init();
|
|
memory_init(NULL);
|
|
printf("halting...\n");
|
|
while(1);
|
|
}
|