A CHIP-8 Emulator with limited support for SUPERCHIP games, written in C++
(games shown are from The octojam game repository)
Install cmake and SDL2 if not installed
$ sudo apt-get install cmake libsdl2-dev
To run a game, move it into the same directory as the emulator files. Then change the GAME variable in the make file.
Then run $ make run
In order to run a SUPERCHIP game, change the chipType variable in chip8.cpp to SUPERCHIPMODERN (located right above main function)

