mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
55 lines
664 B
C
55 lines
664 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;
|
|
|
|
grsim_init();
|
|
|
|
home();
|
|
|
|
hgr();
|
|
|
|
fd=open("KATC.BIN",O_RDONLY);
|
|
if (fd<0) {
|
|
printf("Error opening!\n");
|
|
return -1;
|
|
}
|
|
read(fd,&ram[0x2000],8192);
|
|
close(fd);
|
|
|
|
grsim_update();
|
|
|
|
while(1) {
|
|
ch=grsim_input();
|
|
if (ch) break;
|
|
usleep(100000);
|
|
}
|
|
|
|
fd=open("LENNA.BIN",O_RDONLY);
|
|
lseek(fd,4,SEEK_SET);
|
|
if (fd<0) {
|
|
printf("Error opening!\n");
|
|
return -1;
|
|
}
|
|
read(fd,&ram[0x2000],8192);
|
|
close(fd);
|
|
|
|
grsim_update();
|
|
|
|
while(1) {
|
|
ch=grsim_input();
|
|
if (ch) break;
|
|
usleep(100000);
|
|
}
|
|
|
|
|
|
return 0;
|
|
}
|