kernel/README.md

1.8 KiB

created modified
2024-05-13T14:28:49-05:00 2024-05-13T14:28:52-05:00

A kernel for RISC-V written in Rust. Currently focused on running on QEMU generic riscv64, advice and assistance welcome & encouraged.

Reading list

Beginner tutorial

  • Meyer Zinn's RISC-V kernel guide (right now, code is just copied from this - will diverge later)

Other reading

RISC-V Spec

Videos

TODO Research and implement

  • Basics
    • Processes
    • Virtual addrxess spaces, page tables
    • Files, directories
    • Pipes
    • Multitasking, time-slicing
    • Syscalls
  • CPU cache
  • User authentication, login
  • File protection, permissions
  • Mountable file systems
  • Paging to disk
  • Sockets, network support
  • Interprocess communication
  • Device drivers
  • User applications