Chip8 Emulator using c An attempt at building a CHIP-8 emulator using C and SDL2. Running this locally Install dependencies Arch linux: sudo pacman -S sdl2 OR Ubuntu: sudo apt-get install libsdl2-dev Building Build using gcc gcc emulate.c -lSDL2 -lSDL2main -o chip8 Running On linux ./chip8 <name-of-rom> OR WSL on windows export LIBGL_ALWAYS_SOFTWARE=1 && ./chip8 'name-of-rom'