Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 925 Bytes

File metadata and controls

23 lines (21 loc) · 925 Bytes

General TODO list, in rough order of priority/timeline

It feels a bit high-fallutin to call this a "roadmap", so it's rather a loose collection of TODO items
  • Bootloader (limine)
  • Memory Management
  • Logging to in-kernel ring buffer
  • Terminal output of ring buffer log
  • Enable HPET
  • Enable Paging and setup page map
  • Enable Interrupts, setup some basic handlers
  • Scheduler (basic)
  • Syscalls - needs asm wrapper for syscall/sysret, C dispatch logic exists
  • Futex system call (do I even need this? I hope not :( )
  • Virtual Filesystem
  • Load kernel modules (e.g drivers)
  • Load user programs - ELF loading works, blocked by syscalls
  • Network stack - device abstraction exists, no TCP/IP/UDP
  • E1000 driver - init works, no packet TX/RX
  • Web server kernel module
  • Syscalls over HTTP
  • JS: user authentication
  • JS: windowing system