Tetris for the RA8875, derived from another users implementation.

Dependencies:   RA8875

Fork of Tetris by Sergejs Popovs

Tetris, adapted to the RA8875 graphics library and display.

As currently implemented, this version is defined for the 800x480 display. A number of macros can adapt it for other screen resolutions.

Further, while presently configured for landscape mode, it should be fairly easy to reconfigure it for portrait mode.

Revision:
1:b4aa36ae11ac
Parent:
0:645509d95b8d
Child:
3:36de55e63fdf
--- a/Field.h	Mon Feb 20 14:14:30 2017 +0000
+++ b/Field.h	Sat Feb 25 23:52:28 2017 +0000
@@ -1,4 +1,6 @@
 #define MAXX            10
 #define MAXY            12
 
-extern int Field[MAXY][MAXX];
\ No newline at end of file
+extern int Field[MAXY][MAXX];
+int checkLine();
+bool checkGameOver();
\ No newline at end of file