Go to file
Robbe Van Herck 9ebbd0728b
Update README.md
2020-01-07 15:00:23 +01:00
bootloader Leave room for SFS superblock 2020-01-03 13:02:18 +01:00
docs make_bin makes full filesystem 2020-01-05 22:47:40 +01:00
filesystem make_bin makes full filesystem 2020-01-05 22:47:40 +01:00
helpers Add a bit of logging 2020-01-05 22:54:14 +01:00
kernel The _most_ basic memory managment 2020-01-07 14:53:27 +01:00
.gitignore Add demo kernel 2019-12-28 13:47:10 +01:00
Makefile make_bin makes full filesystem 2020-01-05 22:47:40 +01:00
README.md Update README.md 2020-01-07 15:00:23 +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 based on the bare bones kernel from the OSDev wiki.

Features

  • Terminal output (with newlines!)
  • Very basic memory management
  • Interrupt handling
  • Keyboard input
  • Filesystem interaction
  • Better memory management

As a test, I've implemented day 1 of advent of code on the AoC branch.