|
I read the screen specification in Figure 5.4. if I got it correctly, if you want to make a screen "byte" looks like ( B stands for black , which is true bit, W for white):
BBBBBWWWWWWWWWWW
you actually have to write the 16-bit binary value as :
0000000000011111
instead of 1111100000000000 , right ?
|