An open API service indexing awesome lists of open source software.

https://github.com/chux0519/chip8

Implementation of chip8
https://github.com/chux0519/chip8

Last synced: 10 months ago
JSON representation

Implementation of chip8

Awesome Lists containing this project

README

          

# chip8

A simple implementation of the [chip8](https://en.wikipedia.org/wiki/CHIP-8). You can easily use this project as cmake subproject, by just including src/chip.h and linking to `chip8`.

See [example/chip8-sdl2.c](example/chip8-sdl2.c) for example.

![example](pong.png)

## Quick start

build:

> mkdir build && cd build
>
> cmake ..
>
> make

run:

> ./build/example/chip8-sdl2 "xxx.rom"