Add README.md

This commit is contained in:
Robbe Van Herck 2020-01-02 12:17:22 +01:00
parent bf236fd40a
commit 3427ec187b
No known key found for this signature in database
GPG Key ID: A66F76F7B81BD784
1 changed files with 13 additions and 0 deletions

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# RoBoot
My attempt at making a bootloader and kernel.
## Bootloader
The bootloader is self-written, based on articles on [the OSDev wiki](https://wiki.osdev.org/). It's a single stage, ELF-loading bootloader in the most basic way possible.
More info in [the docs](./docs/bootloader.md)
## Kernel
The kernel is basically [the bare bones kernel from the OSDev wiki](https://wiki.osdev.org/Bare_Bones). I have implemented newlines, but otherwise it's still exactly the same...