This is a simple project that aims to emulate the CHIP-8 interpreted programming language. You can use it to run simple .ch8 games and programs. The whole emulator is written in C++, and it uses SDL2 to manage the window. The scope of this emulator is to develop my skills in low-level and hardware level programming.
The project uses CMake as build system, you can clone the git repository and build it using:
cd chip8
mkdir build && cd build
cmake .. && make -j4To run the emulator:
./chip8 [path/to/rom]