/Rust_OS

Developed a Small Operating System using Rust Programming Language, followed the tutorial by (Philipp Oppermann) and learned along the way how to build the OS with Rust.

Primary LanguageRust

Run Cargo Build with the command

cargo build

To create the bootable disk image

cargo bootimage

To run the OS

qemu-system-x86_64 -drive format=raw,file=C:\Users\haide\Documents\Development\Rust_OS\target\x86_64-rust_os\debug\bootimage-Rust_OS.bin

Run our kernel in QEMU

cargo run