Go to file
Robbe Van Herck 07fbe8ee4c
Restrucure target folder and move creation of boot.bin to c program
2020-01-03 14:07:50 +01:00
bootloader Leave room for SFS superblock 2020-01-03 13:02:18 +01:00
docs Better Hard Drive Layout 2020-01-03 13:26:29 +01:00
helpers Restrucure target folder and move creation of boot.bin to c program 2020-01-03 14:07:50 +01:00
kernel Restrucure target folder and move creation of boot.bin to c program 2020-01-03 14:07:50 +01:00
.gitignore Add demo kernel 2019-12-28 13:47:10 +01:00
Makefile Restrucure target folder and move creation of boot.bin to c program 2020-01-03 14:07:50 +01:00
README.md Add mention of AoC branch 2020-01-03 11:41:34 +01:00

README.md

RoBoot

My attempt at making a bootloader and kernel.

Bootloader

The bootloader is self-written, based on articles on the OSDev wiki. It's a single stage, ELF-loading bootloader in the most basic way possible.

More info in the docs

Kernel

The kernel is basically the bare bones kernel from the OSDev wiki. I have implemented newlines, but otherwise it's still exactly the same...

As a more "functional" example, I've implemented day 1 of advent of code on the AoC branch.