Cross-platform original Chip-8 interpreter.
- Clone the repository
- Build from source with
cargo build --release - The resulting binary will be in
./target/release/emulator
Point the emulator to a ROM path and it should work.
emulator ./path/to/my/ROM.ch8For more detailed help, run emulator --help.
You can see the configuration options by generating a configuration file.
emulator generate-config ./emulator-config.tomlThe codebase is split into 2 crates:
- libchip8 - core reusable Chip-8 logic
- emulator - GUI integration with libchip8 (main application)
https://github.com/Timendus/chip8-test-suite test suite was used for testing.
| Test | Status |
|---|---|
| Chip-8 logo | ✅ |
| IBM logo | ✅ |
| corax+ | ✅ |
| flags | ✅ |
| quirks | ❌ |
| keypad | ❌ |
| beep | ❌ |