From 3427ec187b53807056743097147692c3cd3ea4bf Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Thu, 2 Jan 2020 12:17:22 +0100 Subject: [PATCH] Add README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4959220 --- /dev/null +++ b/README.md @@ -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...