Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/novoselov-ab/nes-rust
NES emulator in Rust with GUI
https://github.com/novoselov-ab/nes-rust
cpu emulator imgui nes rust
Last synced: 3 months ago
JSON representation
NES emulator in Rust with GUI
- Host: GitHub
- URL: https://github.com/novoselov-ab/nes-rust
- Owner: novoselov-ab
- License: mit
- Created: 2020-07-13T23:54:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T18:19:53.000Z (about 4 years ago)
- Last Synced: 2024-07-19T01:06:31.369Z (4 months ago)
- Topics: cpu, emulator, imgui, nes, rust
- Language: Rust
- Homepage:
- Size: 1.59 MB
- Stars: 85
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nes-rust
NES emulator in Rust with GUI
![](demo.gif)
## How to run
```
> cargo run
```## Acknowledgements & Resources
That was an educational project, thanks to great resources available out there:
* Nesdev Wiki: http://wiki.nesdev.com/w/index.php/Nesdev_Wiki
* 6502 instructions: http://www.obelisk.me.uk/6502/reference.html
* javidx9 videos and sources: https://www.youtube.com/watch?v=F8kx56OZQhg
* other C++ emulator: https://github.com/amhndu/SimpleNES
* nestest.rom from: https://wiki.nesdev.com/w/index.php/Emulator_tests
* ImGui wgpu backend was taken from here: https://github.com/unconed/imgui-wgpu-rs and hacked to add basic support for updating/reuploading textures.