https://github.com/chux0519/chip8
Implementation of chip8
https://github.com/chux0519/chip8
Last synced: 10 months ago
JSON representation
Implementation of chip8
- Host: GitHub
- URL: https://github.com/chux0519/chip8
- Owner: chux0519
- Created: 2018-11-28T12:09:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T02:56:46.000Z (over 7 years ago)
- Last Synced: 2024-12-29T08:23:58.184Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.

## Quick start
build:
> mkdir build && cd build
>
> cmake ..
>
> make
run:
> ./build/example/chip8-sdl2 "xxx.rom"