dos33fsprogs/gr-sim/tfv.c
2017-05-03 10:53:27 -04:00

29 lines
310 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "gr-sim.h"
int main(int argc, char **argv) {
int x,y,ch;
grsim_init();
/* Title Screen */
bload("../tfv/TITLE.GR",0x400);
grsim_update();
while(1) {
ch=grsim_input();
if (ch=='q') break;
usleep(100000);
}
return 0;
}