updated roadmap

This commit is contained in:
shockrahwow 2019-11-29 13:12:31 -08:00
parent b74cc93f8d
commit 0a8ea342c6

View File

@ -12,17 +12,21 @@ Personally I'm unsatisfied with accepting an idea; I want to garner an intuition
* GDT Initialization - now ready to take steps to move to user mode * GDT Initialization - now ready to take steps to move to user mode
* IDT Initialization - interrupt callbacks aren't firing but the table is initialized * IDT Initialization
## Todo/Roadmap ## Todo/Roadmap
* JShell - a _sorta_ shell implementation
* Fixing Interrupt handlers - IRQ's now need to be implemented * Fixing Interrupt handlers - IRQ's now need to be implemented
* Memory allocator * Memory allocator
* Paging will likely come before the allocator: If segmentation isn't being done then _paging_ will be part of the roadmap(most likely) * Paging will likely come before the allocator: If segmentation isn't being done then _paging_ will be part of the roadmap(most likely)
## Bugs ## Bugs/TODOs
* Oranizing this codebase: because its a giant mess flat directory type thing.Although this project is more for me than anyone else so I suppose it doesn't matter too much.
* `serial::serial_write(const char*, const u64)` doesn't always write all the required data nor does it properly deal with the FIFO queue associated with the COM1 port. * `serial::serial_write(const char*, const u64)` doesn't always write all the required data nor does it properly deal with the FIFO queue associated with the COM1 port.