Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suhanyujie/emulate-game-boy-translation
emulate game boy 的中文翻译版
https://github.com/suhanyujie/emulate-game-boy-translation
book emulator gameboy rust
Last synced: 17 days ago
JSON representation
emulate game boy 的中文翻译版
- Host: GitHub
- URL: https://github.com/suhanyujie/emulate-game-boy-translation
- Owner: suhanyujie
- License: apache-2.0
- Created: 2019-07-16T10:00:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-05T13:48:25.000Z (almost 3 years ago)
- Last Synced: 2024-11-10T16:40:55.396Z (3 months ago)
- Topics: book, emulator, gameboy, rust
- Size: 106 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Rust 实现游戏模拟器 Game boy
* 这个仓库是翻译的中文版。原文 https://github.com/rylev/DMG-01/tree/master/book
* 如果对你有帮助,请给颗 ☆
* tips:如有不当之处,还请指正~
* 转载请注明出处!## 目录
- [x] 1 [介绍](./1-introduction/1-introduction.md)
- [x] 2 [架构概述](./2-Architecture-overview/1-Architechture-overview.md)
- [x] 3 [CPU](./3-CPU)
- [x] 3.1 [CPU 寄存器](./3-CPU/1-CPU-Registers.md)
- [x] 3.2 [寄存器数据指令](3-CPU/2-Instructions-on-Register-Data.md)
- [x] 3.3 [指令执行器和控制流](3-CPU/3-executing_instructions.md)
- [x] 3.4 [内存读写指令](3-CPU/4-Instructions-for-Reading-and-Writting-to-Memory.md)
- [x] 3.4 [CPU 完成](3-CPU/5-Finishing-Up-the-CPU.md)
- [x] 4 [图形](./4-Graphics-chapter)
- [x] 4.1 [概述](4-Graphics-chapter/1-introduction.md)
- [x] 4.2 [图形内存片](4-Graphics-chapter/2-tile_ram.md)
- [x] 5 [内存映射](./5-Memory-Map/meory-map.md)
- [ ] 6 附录
- [ ] 6.1 数字
- [ ] 6.2 数字符号
- [ ] 6.3 位操作
- [ ] 6.4 资源
- [ ] 6.5 使用指南
- [ ] 6.6 Cartridge Header## 参与翻译
* 一个人时间和精力有限,如果你能参与一起翻译,那就再好不过。请提 issue 告知。## 参考资料
* 原文 https://github.com/rylev/DMG-01/tree/master/book
* 工具 html 转 markdown http://domchristie.github.io/turndown/
* 其他模拟器资料
* nes emulator https://bugzmanov.github.io/nes_ebook/chapter_1.html
* chip-8 emulator https://github.com/mattmikolay/chip-8/wiki/Mastering-CHIP%E2%80%908
* js 实现的 GameBoy https://imrannazar.com/GameBoy-Emulation-in-JavaScript
* https://github.com/mvdnes/rboy