https://github.com/zanders3/park_os
A toy OS written in rust with interrupts, PCI enumeration and a simple VGA + keyboard driver
https://github.com/zanders3/park_os
Last synced: 5 months ago
JSON representation
A toy OS written in rust with interrupts, PCI enumeration and a simple VGA + keyboard driver
- Host: GitHub
- URL: https://github.com/zanders3/park_os
- Owner: zanders3
- Created: 2016-04-14T07:16:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-22T08:23:25.000Z (almost 10 years ago)
- Last Synced: 2025-04-15T01:44:02.883Z (11 months ago)
- Language: Rust
- Homepage:
- Size: 13.7 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# park_os
A toy OS (bootloader TBH) based upon/ripped off this fantastic series of blog posts:
http://os.phil-opp.com/multiboot-kernel.html
## Building (assuming Ubuntu Server 14.04 LTS)
```
sudo apt-get install nasm xorriso git qemu gdb
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh
git clone https://github.com/zanders3/park_os
cd park_os
multirust override nightly
make libcore
make run
```