Simple Chip8 emulator to learn the basics of emulation.
Debian based (including Ubuntu):
# library
sudo apt install libsdl2
# everything necessary to build programs that use SDL
sudo apt install libsdl2-devRed Hat based (including Fedora):
# library
sudo dnf install SDL2
# everything necessary to build programs that use SDL
sudo dnf install SDL2-develArch:
# everything
sudo pacman -S sdl2Gentoo:
# everything
sudo emerge libsdl2Other:
Compile:
makeAnd run:
./bin/emu SCALE ROM# example
./bin/emu 10 ./roms/pong.ch8