Emulation of the 1970's Chip-8 machine. The emulator has 7 games that are unmodified from the original Chip-8 format.

Dependencies:   mbed

Committer:
taylorza
Date:
Sun Feb 08 01:58:57 2015 +0000
Revision:
0:bc3f11b1b41f
Chip-8 Emulator

Who changed what in which revision?

UserRevisionLine numberNew contents of line
taylorza 0:bc3f11b1b41f 1 #include "GameInput.h"
taylorza 0:bc3f11b1b41f 2
taylorza 0:bc3f11b1b41f 3 DigitalIn GameInput::_up(P0_13, PullUp);
taylorza 0:bc3f11b1b41f 4 DigitalIn GameInput::_down(P0_12, PullUp);
taylorza 0:bc3f11b1b41f 5 DigitalIn GameInput::_left(P0_14, PullUp);
taylorza 0:bc3f11b1b41f 6 DigitalIn GameInput::_right(P0_11, PullUp);
taylorza 0:bc3f11b1b41f 7 DigitalIn GameInput::_square(P0_16, PullUp);
taylorza 0:bc3f11b1b41f 8 DigitalIn GameInput::_circle(P0_1, PullUp);