Some random attempts at programming the retro console

Dependencies:   LCD_ST7735 mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

Committer:
loop
Date:
Sat Feb 28 17:39:08 2015 +0000
Revision:
10:ba2dea5fffd1
Parent:
9:5c4a3e89a713
Remove some unused stuff

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"
loop 9:5c4a3e89a713 4
loop 9:5c4a3e89a713 5 int main() {
john_ghielec 1:cd8a3926f263 6 Game game;
john_ghielec 1:cd8a3926f263 7 game.showSplashScreen();
john_ghielec 2:6ab46f2e851a 8 while (true)
john_ghielec 1:cd8a3926f263 9 game.tick();
loop 9:5c4a3e89a713 10 }