void glcd_frame_rom(long Offset){
int8 i, j;
long k;
k=Offset;
for(i = 0; i < 8; ++i){
output_low(GLCD_DI);
glcd_writeByte(GLCD_LEFT, 0b01000000);
glcd_writeByte(GLCD_LEFT, i | 0b10111000);
output_high(GLCD_DI);
for(j = 0; j < 64; ++j){
glcd_writeByte(GLCD_LEFT, Frame[k]);
k+=1;
delay_us(10);
}
output_low(GLCD_DI);
glcd_writeByte(GLCD_RIGHT, 0b01000000);
glcd_writeByte(GLCD_RIGHT, i | 0b10111000);
output_high(GLCD_DI);
for(j = 0; j < 64; ++j){
glcd_writeByte(GLCD_RIGHT, Frame[k]);
k+=1;
delay_us(10);
}
}
}