tabs/README.md

46 lines
1.7 KiB
Markdown
Raw Normal View History

2020-01-27 22:25:31 +00:00
# TABS
2020-01-02 11:17:22 +00:00
2020-01-27 22:25:31 +00:00
Totaal Arbitrair BesturingsSysteem, Zeus maakt een besturingssysteem!
2020-01-02 11:17:22 +00:00
2020-01-09 11:21:21 +00:00
## How to use
To compile, you need:
- `i686-elf-gcc` for cross-compiling the kernel
- A system `gcc` for compiling the host-helpers
- `nasm` for compiling the bootloader
- `qemu-system-i386` for emulating (`qemu-system-x86_64` will probably work too, but that is not directly supported)
2020-01-27 22:59:30 +00:00
More information about installing a cross compiler can be found [here](https://wiki.osdev.org/GCC_Cross-Compiler#The_Build).
2020-01-09 11:21:21 +00:00
If you run `make bin`, it will generate `target/boot.bin`, this is a binary file layed out as described in [the docs](docs/bootloader.md). To burn it on a USB drive, simply `dd if=target/boot.bin of=/dev/sdb` and the drive is bootable and contains an SFS filesystem with the files in `filesystem/`.
2020-01-02 11:17:22 +00:00
## 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
2020-01-07 14:00:23 +00:00
The kernel is based on [the bare bones kernel from the OSDev wiki](https://wiki.osdev.org/Bare_Bones).
2020-01-03 10:38:43 +00:00
2020-01-07 14:00:23 +00:00
### Features
- [x] Terminal output (with newlines!)
- [x] _Very_ basic (and probably broken) memory management
2020-01-09 11:06:45 +00:00
- [x] Interrupt handling
- [x] Keyboard input
2020-01-09 15:27:19 +00:00
- [x] Exception handling
- [x] Minimal shell
2020-01-07 14:00:23 +00:00
- [ ] Filesystem interaction
2020-01-09 11:21:21 +00:00
- [ ] Show files in directory
- [ ] Read files in directory
- [ ] Write files in directory
- [ ] Tests
- [ ] Running executables from filesystem
2020-01-07 14:00:23 +00:00
- [ ] Better memory management
- [ ] Better shell
2020-01-07 14:00:23 +00:00
As a test, I've implemented day 1 of [advent of code](https://adventofcode.com/) on the [AoC branch](https://github.com/Robbe7730/RoBoot/tree/AoC).