A CHIP 8 decompiler and emulator written in C.
- gcc:
sudo apt install gcc
- build-essential (for make):
sudo apt install build-essential
- FreeGLUT:
sudo apt install freeglut3-dev
- Clone project with
git clone [email protected]:aidan-clyens/Chip8Emulator.git
- Build with
make
- Check list of CHIP-8 games in c8games folder.
Run with./emulator GAME
, where 'GAME' is the name of one of the CHIP-8 programs in the c8games folder.
For example./emulator PONG
Chip8 Manual:
https://storage.googleapis.com/wzukusers/user-34724694/documents/5c83d6a5aec8eZ0cT194/CHIP-8%20Classic%20Manual%20Rev%201.3.pdf
Games:
https://www.zophar.net/pdroms/chip8/chip-8-games-pack.html
Aidan Clyens