Hi i have a 128 x 64 all graphic screen with no internal character memory. My question is how do you take a char character & write it to the screen? I imagine you would have to create a table of bitmap characters & somehow reference it against you char in question. Does anybody have some really basic code of how this is done. I can print the code below.
Also doing something like this
const unsigned char E [] = { 0xF8, 0xF8, 0x88, 0x88, 0x88, 0x88, 0x00, 0x00, 0x0F, 0x0F, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00 };
takes up a lot of memory & i think some people have got around it by writing it a different way in memory. How is that done?