The preloaded firmware shipped on the RETRO

Dependencies:   mbed

Main.cpp

Committer:
john_ghielec
Date:
2014-11-21
Revision:
2:6ab46f2e851a
Parent:
1:cd8a3926f263

File content as of revision 2:6ab46f2e851a:

#include "mbed.h"

#include "Game.h"

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