Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/novoselov-ab/chip8-rust
CHIP-8 emulator in Rust with GUI
https://github.com/novoselov-ab/chip8-rust
chip8 chip8-emulator emulator imgui rust wgpu-rs
Last synced: 3 days ago
JSON representation
CHIP-8 emulator in Rust with GUI
- Host: GitHub
- URL: https://github.com/novoselov-ab/chip8-rust
- Owner: novoselov-ab
- License: mit
- Created: 2020-06-08T20:18:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-21T23:11:24.000Z (over 4 years ago)
- Last Synced: 2023-12-04T20:29:15.476Z (11 months ago)
- Topics: chip8, chip8-emulator, emulator, imgui, rust, wgpu-rs
- Language: Rust
- Homepage:
- Size: 331 KB
- Stars: 20
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CHIP-8 Emulator in Rust
UI is based on ImGui and shows some internals (CPU state, code).
![](demo.gif)
## How to run
```
> cargo run
```## Acknowledgements
* ROMs used from this repo: https://github.com/dmatlack/chip8/tree/master/roms
* ImGui wgpu backend was taken from here: https://github.com/unconed/imgui-wgpu-rs and hacked to add basic support for updating/reuploading textures.