/OS

A bare metal Rust based OS (for education purpose)

Primary LanguageRust

Screenshot 2023-05-16 at 14 39 29

OS A bare metal Rust based OS (for education purpose) to follow the tutorial go to here thanks Philipp Oppermann!

install dependencies

you will have to install rustup

$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

then install the rust nightly toolchain

$ rustup install nightly

then install the rust source code

$ rustup component add rust-src

then install the rust llvm tools

$ rustup component add llvm-tools-preview

run the project

you will have to install qemu

$ brew install qemu

then run the project with cargo run

$ cargo run