Reformatting project structure 1

This commit is contained in:
lucic71 2022-06-28 19:40:51 +03:00
parent d7af88fbbb
commit 7e177539b3
28 changed files with 11 additions and 3 deletions

11
kernel/kernel/kmain.c Normal file
View File

@ -0,0 +1,11 @@
#include "screen.h"
#include "serial.h"
void kmain(void) {
screen_init();
screen_write("buna ziua", sizeof("buna ziua") - 1);
serial_init(COM1);
serial_write(COM1, "buna ziua", sizeof("buna ziua") - 1);
}

View File

@ -1,3 +0,0 @@
void kmain(void) {
}