Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 803 Bytes

README.md

File metadata and controls

33 lines (28 loc) · 803 Bytes

Chip8-Emulator

A simple chip8 emulator for entertainement and learning purposes written in C++ using the SDL2 library. Some roms have been included to play around with the emulator.

/!\ Audio channels have not been implemented yet (and will probably never be)

# Showcase


# Compile from source

MakeFile build

user@debian:~$ mkdir build && cd build
user@debian:~$ cmake .. 
user@debian:~$ make

Ninja build

user@debian:~$ mkdir build && cd build
user@debian:~$ cmake -G Ninja .. 
user@debian:~$ ninja

# Play

user@debian:~$ make run

[OR]

user@debian:~$ ninja run

Crafted with ❤️ by mtribiere