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 00:04:52 2015 +0000
Revision:
8:c63981a45c95
Parent:
2:6ab46f2e851a
Child:
9:5c4a3e89a713
Brought in MusicEngine

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 8:c63981a45c95 4 #include "MusicEngine.h"
loop 8:c63981a45c95 5
loop 8:c63981a45c95 6 main()
loop 8:c63981a45c95 7 {
john_ghielec 1:cd8a3926f263 8 Game game;
john_ghielec 1:cd8a3926f263 9
john_ghielec 1:cd8a3926f263 10 game.showSplashScreen();
john_ghielec 0:21669ea33448 11
john_ghielec 2:6ab46f2e851a 12 while (true)
john_ghielec 1:cd8a3926f263 13 game.tick();
john_ghielec 0:21669ea33448 14 }