20 lines
No EOL
224 B
C
20 lines
No EOL
224 B
C
#include "delay.h"
|
|
#include "main.h"
|
|
#include "display.h"
|
|
|
|
|
|
extern unsigned char isGAMEOVER;
|
|
extern unsigned char isVICTROY;
|
|
|
|
int main()
|
|
{
|
|
init();
|
|
clear();
|
|
|
|
while(1)
|
|
{
|
|
if(!isGAMEOVER && !isVICTROY);
|
|
draw();
|
|
|
|
}
|
|
} |