reimplmenets the previous iteration with a brand new custom build system
This commit is contained in:
17
kernel/kmain.c
Normal file
17
kernel/kmain.c
Normal file
@ -0,0 +1,17 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include <kernel/tty.h>
|
||||
#include <kernel/serial.h>
|
||||
|
||||
void kmain(void)
|
||||
{
|
||||
terminal_initialize();
|
||||
serial_initialize();
|
||||
|
||||
|
||||
terminal_writestring("test");
|
||||
|
||||
serial_writestring("test!");
|
||||
|
||||
printf("test..");
|
||||
}
|
Reference in New Issue
Block a user