tabs/README.md

16 lines
651 B
Markdown
Raw Normal View History

2020-01-02 11:17:22 +00:00
# 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...
2020-01-03 10:38:43 +00:00
As a more "functional" example, I've implemented day 1 of [advent of code](https://adventofcode.com/) on the [AoC branch](https://github.com/Robbe7730/RoBoot/tree/AoC).