This is a simple implementation of the Chip-8 Emulator written using C++ and SDL. This was written by following along Austin Morlan's blog which you can find here.
- Clone the project
- Run the following command
g++ main.cpp chip8.cpp platform.cpp -o chip8 -I ./include -L ./lib -l SDL2 -l glad
- Run
./chip8command and you are ready to begin.
- Implement sound
- Implement a debugger interface