https://github.com/zuki/blog-os
Writing an OS in Rustを読みながら順番に実装。
https://github.com/zuki/blog-os
Last synced: 9 months ago
JSON representation
Writing an OS in Rustを読みながら順番に実装。
- Host: GitHub
- URL: https://github.com/zuki/blog-os
- Owner: zuki
- Created: 2020-08-15T02:25:36.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T06:37:22.000Z (almost 6 years ago)
- Last Synced: 2025-07-17T09:55:41.994Z (11 months ago)
- Language: Rust
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Writing an OS in Rust](https://github.com/phil-opp/blog_os)を読みながら実装
Mac mini + macOS Mojaveの環境で表記の記事を読みながら実装していく。
## post-06: Double Faults
- gdtを設定して実行したところ、トリプルフォルトによるエンドレスリセットが発生。
* コメント欄にあるようにTSSのスタックサイズを`4096 * 5`に変更すると解決した。
* さらに、releaseモードで実行した場合は`4096`でも問題は発生しなかった。