Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/segfault802/chip8
An interpreter for the CHIP-8 architecture
https://github.com/segfault802/chip8
Last synced: 2 months ago
JSON representation
An interpreter for the CHIP-8 architecture
- Host: GitHub
- URL: https://github.com/segfault802/chip8
- Owner: segfault802
- Created: 2012-06-05T03:34:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-03T01:56:04.000Z (about 11 years ago)
- Last Synced: 2024-08-03T18:16:16.614Z (6 months ago)
- Language: C
- Homepage:
- Size: 207 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- AwesomeInterpreter - chip8
README
An emulator for the CHIP-8 architecture.
Technically this isn't a true emulator since CHIP-8 was actually an interpreted programming language and wasn't implemented directly in hardware. Its purpose was to make programming games easier by providing a common instruction set that would work across multiple platforms.
See the links below for more info and the specification that was followed
https://en.wikipedia.org/wiki/CHIP-8
http://devernay.free.fr/hacks/chip8/C8TECH10.HTM
This doesn't use any special libraries apart from ncurses so it *should* compile on unix based systems without too much trouble. When running it make sure the terminal window is at least 64x32 characters wide so things will display correctly.