Output bitmap

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Output bitmap

acea12321
Can someone please explain how this bitmap decides which pixels are on?
Thank you
Reply | Threaded
Open this post in threaded view
|

Re: Output bitmap

cadet1620
Administrator
Words in the screen memory each control 16 pixels. Screen[0] controls the leftmost 16 pixels of the top row, Screen[1] the next 16 pixels, etc.

For each word, the least significant bit controls the left-most bit of the 16-bit group. Example Screen[0]=1 tunrs on the upper-left screen pixel.

--Mark