Fix flip bits not marked up

This commit is contained in:
michaelangel007 2016-01-09 12:34:55 -08:00
parent 6bab23c16a
commit 9a50be6226

View File

@ -163,26 +163,26 @@ Third, the video scanner for HGR mode scans bits in reverse. :-/ This means that
2900:20 2900:20
2D00:10 2D00:10
We would only get: We would only get:
* 3 scanlines intead of the expected 4 (see the next point), and * 3 scanlines intead of the expected 4 (see the next point), and
* the image would be flipped along the left-right (X axis) like this: `/` !! * the image would be flipped along the left-right (X axis) like this: `/`
On the Apple we need to flip each byte: On the Apple we need to flip each byte:
%0000_0001 = $01 %0000_0001 = $01
%0000_0010 = $02 %0000_0010 = $02
%0000_0100 = $04 %0000_0100 = $04
%0000_1000 = $08 %0000_1000 = $08
Enter in: Enter in:
2200:1 2200:1
2600:2 2600:2
2A00:4 2A00:4
2E00:8 2E00:8
And we see the correct: `\` And we see the correct: `\`
### Half-pixel shift ### Half-pixel shift