dos33fsprogs/utils/gr-sim/gr/gr_view.c
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

44 lines
611 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include "gr-sim.h"
int main(int argc, char **argv) {
int ch,fd;
if (argc<1) {
fprintf(stderr,"Usage: hgr_view FILENAME\n");
fprintf(stderr," where FILENAME is an 1k AppleII LORES image\n\n");
}
grsim_init();
home();
gr();
/* Show all 40x48, no bottom text */
soft_switch(MIXCLR);
fd=open(argv[1],O_RDONLY);
if (fd<0) {
printf("Error opening!\n");
return -1;
}
read(fd,&ram[0x400],1024);
close(fd);
grsim_update();
while(1) {
ch=grsim_input();
if (ch) break;
usleep(100000);
}
return 0;
}