Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swnakamura/30daysOS
30 days os (with Rust?)
https://github.com/swnakamura/30daysOS
Last synced: 12 days ago
JSON representation
30 days os (with Rust?)
- Host: GitHub
- URL: https://github.com/swnakamura/30daysOS
- Owner: swnakamura
- Created: 2020-09-05T16:09:10.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-17T21:38:40.000Z (over 3 years ago)
- Last Synced: 2024-08-01T17:39:18.843Z (3 months ago)
- Language: Rust
- Size: 188 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 30日でできる!OS自作入門 in Rust
~~Rustで30日OS本を再現実装するぞ!~~
30日OS本は32bitだったりブートローダーがWindows専用だったりしていろいろと
難しかったので、ブートローダー・メモリ仮想化周りは下記[RustでOSを書くブログ]も参考に進めています# 参考になる資料
* [勉強したことをまとめたノート](./note.md)
* 先達 https://yoshitsugu.net/tags/OS%E8%87%AA%E4%BD%9C%E5%85%A5%E9%96%80.html
* [RustでOSを書くブログ](https://os.phil-opp.com/)
## Rust言語仕様
* https://doc.rust-lang.org/unstable-book/library-features/asm.html
* https://doc.rust-lang.org/std/primitive.pointer.htmlAlso, special thanks to [tokusan](https://github.com/toku-sa-n) for giving me kind advice.