Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.33 KB

File metadata and controls

49 lines (31 loc) · 1.33 KB

AmongOS

A small sussy operating system written with the Rust programming language. Developed by following Philipp Oppermann's Writing an OS in Rust blog.

Screenshots

My Image

Roadmap

Status Feature
Bare Bones
Amogus On The Screen
VGA Text Mode
Testing
Interrupts
Memory Management
Multitasking
... ...

Installation

You can't just download and run the operating system, unfortunately.

To proceed, it is necessary to install QEMU and Rust Nightly. You might also need to follow some extra steps, so I suggest referring to the first two tutorials on Writing an OS in Rust Philipp Oppermann's blog

AmongOS's crates.io page

Usage

To build:

cargo build --target among.json

To run on Qemu

qemu-system-x86_64 -drive format=raw,file=target/among/debug/bootimage-amongos.bin

Acknowledgements