https://github.com/corani/chip8
https://github.com/corani/chip8
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/corani/chip8
- Owner: corani
- License: mit
- Created: 2024-09-06T11:57:24.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-09-18T10:48:20.000Z (9 months ago)
- Last Synced: 2025-01-09T20:48:24.961Z (5 months ago)
- Language: Go
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chip8 implementation in Go
## Usage
```bash
$ ./build.sh$ ./bin/chip8 \
[-ui gui/tui] \
[-log log-file] \
[-cpuprofile pprof-file] \
-rom
```## Roms
- https://github.com/corax89/chip8-test-rom
- https://github.com/kripod/chip8-roms## Resources
- [Technical Reference](http://devernay.free.fr/hacks/chip8/C8TECH10.HTM)
- [Wikipedia](https://en.wikipedia.org/wiki/CHIP-8)
- [Another Go implementation](https://github.com/braheezy/chip-8)