An open API service indexing awesome lists of open source software.

https://github.com/corani/chip8


https://github.com/corani/chip8

Last synced: 3 months ago
JSON representation

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)