chip8 emulator, written in C++
Clone the repository and execute the chip8. If you use Windows or Mac built it with "g++ -g chip8.cpp -o chip8 -lSDL2"
To built it you need the libary "SDL2".
To run the emulator run it over the console with a 2nd arg which stands for the rom to load (only roms in the same folder).
e.g "./chip8 PONG"
This gh repository does have a lot of roms: https://github.com/JamesGriffin/CHIP-8-Emulator/tree/master/roms
Frontend (so everything with sdl2) is copied by this repo https://github.com/JamesGriffin/CHIP-8-Emulator/
The rest is written by me