Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danirod/chip8

A multiplatform CHIP-8 emulator done in SDL 2. Implements all the opcodes for CHIP and SCHIP specifications.
https://github.com/danirod/chip8

autoconf autotools c chip8 emulator libcheck virtual-machine

Last synced: 8 days ago
JSON representation

A multiplatform CHIP-8 emulator done in SDL 2. Implements all the opcodes for CHIP and SCHIP specifications.

Awesome Lists containing this project

README

        

chip8 is a CHIP-8 emulator developed in C using the SDL2 multimedia library. It
emulates a standard CHIP-8 machine and implements all the opcodes that the
specification provides.

To emulate a binary ROM just provide the file as an argument:

$ chip8 ~/roms/TETRIS.bin

You can have more information by reading the software manual at the following
locations:

* http://www.danirod.es/chip8/docs/current/manual/ (online manual).
* http://www.danirod.es/chip8/docs/current/chip8.pdf (PDF manual).

In order to compile this project you will need to have SDL 2.0 headers and
libraries in your machine. Head to www.libsdl.org to get those in case you
still haven’t got them or get them using your package manager if your operating
system has any.

After installing SDL 2.0 you can download the software distribution and install
it via the following commands:

autoreconf --install # Only if you are using the Git repository
./configure
make
make install
make check # Optional: to test the emulator -- libcheck is required

This program is released under the terms of the GNU General Public License v3.
See the COPYING file for the entire distribution conditions.

CHIP-8: A multiplatform CHIP-8 emulator done in SDL
Copyright © 2015-2016 Dani Rodríguez

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see .
See COPYING for the entire contents of the license.