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 #ifndef __BASE_H__
taylorza 0:bc3f11b1b41f 2 #define __BASE_H__
taylorza 0:bc3f11b1b41f 3
taylorza 0:bc3f11b1b41f 4 template <typename T>
taylorza 0:bc3f11b1b41f 5 void swap(T &a, T &b) { T t = a; a = b; b = t; }
taylorza 0:bc3f11b1b41f 6 #endif // __BASE_H__