diff --git a/TODO.md b/TODO.md index 94694f8..94562b4 100644 --- a/TODO.md +++ b/TODO.md @@ -1,3 +1,5 @@ # TO DO - Multiboot support (for grub etc) - - Expand os-image so there is no error 0x8b00! + - VGA Library (Graphics) + - User input (Keyboard) + - File system? diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c index 6d38209..add430b 100644 --- a/src/kernel/kernel.c +++ b/src/kernel/kernel.c @@ -1,7 +1,8 @@ #include "lib/vga.c" void main() { - vga_init(); + vga_init(); // Initialize the screen first + // i.e. clear the screen et cetera. set_cursor_pos(28, 2); print("eOS Version 0.1 2021", 0xf0);