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

Dependencies:   mbed

Fork of Official_RETRO by GHI Electronics

Main.cpp

Committer:
devhammer
Date:
2015-01-15
Revision:
3:2f09c90a732d
Parent:
2:6ab46f2e851a

File content as of revision 3:2f09c90a732d:

#include "mbed.h"

#include "Game.h"

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