The preloaded firmware shipped on the RETRO

Dependencies:   mbed

Main.cpp

Committer:
john_ghielec
Date:
2014-11-17
Revision:
1:cd8a3926f263
Parent:
0:21669ea33448
Child:
2:6ab46f2e851a

File content as of revision 1:cd8a3926f263:

#include "mbed.h"

#include "Game.h"

int main() {
    Game game;
        
    game.showSplashScreen();
    
    while (true) {
        game.tick();
        
        wait_ms(25);
    }
}