Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jt2m0l3y/unnamedos
A minimal kernel-based OS following Philipp Oppermann's blog: https://os.phil-opp.com/
https://github.com/jt2m0l3y/unnamedos
Last synced: 28 days ago
JSON representation
A minimal kernel-based OS following Philipp Oppermann's blog: https://os.phil-opp.com/
- Host: GitHub
- URL: https://github.com/jt2m0l3y/unnamedos
- Owner: JT2M0L3Y
- License: mit
- Created: 2024-11-13T22:11:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-21T02:43:34.000Z (about 1 month ago)
- Last Synced: 2024-11-21T03:25:02.412Z (about 1 month ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unnamedOS
This is a learning exercise to aquire a deeper understanding of OS essentials.
To start, devs will jump through stages in the phil-opp/blog_os guideline:
* Bare Bones Kernel
* [x] basic Rust binary
* [x] minimal Rust kernel
* [ ] printing text
* [ ] testing
* Interrupts
* [ ] CPU Exceptions
* [ ] Double Faults
* [ ] Hardware Interrupts
* Memory Management
* [ ] Paging
* [ ] Heap Allocation
* [ ] Allocator Additions
* Multitasking
* [ ] Async/Await