I'm trying to write a HiRes program for gandera using PocketC-ver3.8 and toolbox-ver7.5.3. Program compiles and runs. Even handera-specific functions as silkscreen control and screen rotation work, but when it comes to drawing only the upper-left coner of screen (160*160) is drawn. What can be the problem and how do I solve it?
Thanks.
P.S. My program
library "PToolboxLib"
include "Fctl.h"
main() {
int e;
int input;
int x=1;
int oldx=1;
int y=1;
int oldy=1;
int i,j;
Handera(1, 1);
//Handera(2, 1);
//Handera(3, 0);
graph_on();
while (1) {
for(i=0;i<200;i=i+4)
for(j=0;j<200;j=j+4)
SetPixel(i, j);
}
}
P.P.S. Didn't find any installation guides, is there such a thing?