Some random attempts at programming the retro console

Dependencies:   LCD_ST7735 mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

Main.cpp

Committer:
loop
Date:
2015-02-28
Revision:
9:5c4a3e89a713
Parent:
8:c63981a45c95

File content as of revision 9:5c4a3e89a713:

#include "mbed.h"

#include "Game.h"

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