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

Dependencies:   mbed

LCD_ST7735/Base.h

Committer:
taylorza
Date:
2015-02-08
Revision:
0:bc3f11b1b41f

File content as of revision 0:bc3f11b1b41f:

#ifndef __BASE_H__
#define  __BASE_H__

template <typename T>
void swap(T &a, T &b) { T t = a; a = b; b = t; }
#endif // __BASE_H__