mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-26 02:49:18 +00:00
Show Image DA/IIgs: Preserve NEWVIDEO bits
This commit is contained in:
parent
2da03912a0
commit
37ff19ef0d
@ -619,7 +619,8 @@ cloop: lda (src),y
|
|||||||
;; Apple IIgs - DHR Color
|
;; Apple IIgs - DHR Color
|
||||||
jsr test_iigs
|
jsr test_iigs
|
||||||
bcs done
|
bcs done
|
||||||
lda #%00000000
|
lda NEWVIDEO
|
||||||
|
and #<~(1<<5) ; Color
|
||||||
sta NEWVIDEO
|
sta NEWVIDEO
|
||||||
|
|
||||||
done: rts
|
done: rts
|
||||||
@ -638,7 +639,8 @@ done: rts
|
|||||||
;; Apple IIgs - DHR B&W
|
;; Apple IIgs - DHR B&W
|
||||||
jsr test_iigs
|
jsr test_iigs
|
||||||
bcs done
|
bcs done
|
||||||
lda #%00100000
|
lda NEWVIDEO
|
||||||
|
ora #(1<<5) ; B&W
|
||||||
sta NEWVIDEO
|
sta NEWVIDEO
|
||||||
|
|
||||||
done: rts
|
done: rts
|
||||||
|
Loading…
Reference in New Issue
Block a user