An OS written in Rust and Assembly. It currently only supports the amd64 architecture.
Completed - VGA driver. - Paging. - Keyboard input / PS/2 driver. - Basic support for PCI devices. - Basic pre-emptive scheduling.
```bash
curl https://sh.rustup.rs -sSf | sh
git clone https://github.com/too-r/lambdaOS.git && cd ~/lambdaOS #Or wherever you put it.
rustup override set nightly
rustup component add rust-src && cargo install xargo
sudo pacman -S make qemu xorriso grub nasm mtools
make run ```