Minimal Operating System Kernel written in Rust.
- Download and install QEMU
- Download and install Rust
- Install Rust nightly:
rustup install nightly
- Set Rust Nightly as the default compiler for Hexand Project by navigating to Hexand directory and run:
rustup override set nightly
- Add Rust llvm tools component:
rustup component add llvm-tools-preview
- Finally run:
cargo run
This project is inspired by Philipp Oppermann and his tutorial about writing an operating system using Rust https://os.phil-opp.com .