Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 593 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 593 Bytes

Chip8

Basic Chip8 emulator written in C++.

Usage

Quick start:

mkdir build && cd build
conan install .. --build=missing -o testing=True
cmake -DTESTING=ON -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
./src/Chip8

Tested configurations

  • Ubuntu 22.04

TODOs

  • Fix all Chip-8 quirks from test suite

Acknowlegments