Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 684 Bytes

README.md

File metadata and controls

51 lines (33 loc) · 684 Bytes

x86_64 Kernel Project

Licence

GPL 3.0 or any later version

Install dependencies

rustup component add llvm-tools-preview rust-src
cargo install bootimage

Run with QEMU

cargo run

Progress

Following this guide: https://os.phil-opp.com/

Bare Bones

  • A Freestanding Rust Binary
  • A Minimal Rust Kernel
  • VGA Text Mode
  • Testing

Interrupts

  • CPU Exceptions
  • Double Faults
  • Hardware Interrupts

Memory Management

  • Introduction to Paging
  • Paging Implementation
  • Heap Allocation
  • Allocator Designs

Multitasking

  • Async/Await

After that:

  • Multiboot2 header
  • UEFI