mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
e99d77f6fd
still need to implement cout()
41 lines
462 B
C
41 lines
462 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();
|
|
|
|
gr();
|
|
|
|
/* Put rainbow on screen */
|
|
for(y=0;y<40;y++) for(x=0;x<40;x++) {
|
|
color_equals(y%16);
|
|
basic_plot(x,y);
|
|
}
|
|
|
|
color_equals(15);
|
|
basic_vlin(0,40,20);
|
|
|
|
color_equals(0);
|
|
basic_hlin(0,40,20);
|
|
|
|
|
|
while(1) {
|
|
grsim_update();
|
|
|
|
ch=grsim_input();
|
|
|
|
if (ch=='q') break;
|
|
|
|
usleep(100000);
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|