Fuck you QEMU

pull/25/head
E. Almqvist 3 years ago
parent d2bcea854b
commit 386f188807
  1. 4
      TODO.md
  2. 3
      src/kernel/kernel.c

@ -1,3 +1,5 @@
# TO DO # TO DO
- Multiboot support (for grub etc) - Multiboot support (for grub etc)
- Expand os-image so there is no error 0x8b00! - VGA Library (Graphics)
- User input (Keyboard)
- File system?

@ -1,7 +1,8 @@
#include "lib/vga.c" #include "lib/vga.c"
void main() { void main() {
vga_init(); vga_init(); // Initialize the screen first
// i.e. clear the screen et cetera.
set_cursor_pos(28, 2); set_cursor_pos(28, 2);
print("eOS Version 0.1 2021", 0xf0); print("eOS Version 0.1 2021", 0xf0);

Loading…
Cancel
Save