myos/kernel.c
2025-05-02 16:20:25 -04:00

20 lines
297 B
C

#include "console.h"
#include "keyboard.h"
#include "util.h"
#include <stdint.h>
void main() {
clear_terminal();
update_cursor();
print_line_with_color("Welcome to myOS!", RED, WHITE);
uint8_t byte;
while(1) {
while (byte = scan()) {
print_character(charmap[byte]);
}
}
return;
}