Modified version of official firmware for Outrageous Circuits' RETRO. See Game.cpp for change history.

Dependencies:   mbed

Fork of Official_RETRO by GHI Electronics

Committer:
devhammer
Date:
Thu Jan 15 12:48:21 2015 +0000
Revision:
3:2f09c90a732d
Parent:
2:6ab46f2e851a
First commit of modified Pong game for RETRO.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
john_ghielec 0:21669ea33448 1 #include "mbed.h"
john_ghielec 0:21669ea33448 2
john_ghielec 1:cd8a3926f263 3 #include "Game.h"
john_ghielec 0:21669ea33448 4
john_ghielec 0:21669ea33448 5 int main() {
john_ghielec 1:cd8a3926f263 6 Game game;
john_ghielec 1:cd8a3926f263 7
john_ghielec 1:cd8a3926f263 8 game.showSplashScreen();
john_ghielec 0:21669ea33448 9
john_ghielec 2:6ab46f2e851a 10 while (true)
john_ghielec 1:cd8a3926f263 11 game.tick();
john_ghielec 0:21669ea33448 12 }