https://github.com/j-hc/rhip-8
A full implementation of the Chip-8 emulator, in Rust. Fully decoupled from the graphics, audio and input handlers backend.
https://github.com/j-hc/rhip-8
chip8 rust
Last synced: 3 months ago
JSON representation
A full implementation of the Chip-8 emulator, in Rust. Fully decoupled from the graphics, audio and input handlers backend.
- Host: GitHub
- URL: https://github.com/j-hc/rhip-8
- Owner: j-hc
- License: apache-2.0
- Created: 2022-05-03T15:49:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-03T15:54:55.000Z (about 3 years ago)
- Last Synced: 2025-01-13T13:52:26.569Z (5 months ago)
- Topics: chip8, rust
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rhip-8

A **full** implementation of the Chip-8 emulator, in Rust. Fully decoupled from the graphics, audio and input handlers backend.
SDL2 is used in this instance.# Build and Play
- You wil need libsdl2, rustc and cargo
```console
$ pacman -S sdl2$ git clone https://github.com/j-hc/rhip-8
$ cd rhip-8
$ cargo run --release -- ./roms/min.ch8
```