Disable potentially enabled double-width graphics.
This commit is contained in:
@@ -58,7 +58,13 @@ LOWSCR := $C054 ; Page 1
|
|||||||
HISCR := $C055 ; Page 2
|
HISCR := $C055 ; Page 2
|
||||||
LORES := $C056 ; Lores graphics
|
LORES := $C056 ; Lores graphics
|
||||||
HIRES := $C057 ; Hires graphics
|
HIRES := $C057 ; Hires graphics
|
||||||
|
DHIRESON := $C05E ; Enable double-width graphics
|
||||||
|
DHIRESOFF := $C05F ; Disable double-width graphics
|
||||||
|
|
||||||
; Game controller
|
; Game controller
|
||||||
BUTN0 := $C061 ; Open-Apple Key
|
BUTN0 := $C061 ; Open-Apple Key
|
||||||
BUTN1 := $C062 ; Closed-Apple Key
|
BUTN1 := $C062 ; Closed-Apple Key
|
||||||
|
|
||||||
|
; IOU
|
||||||
|
IOUDISON := $C07E ; Disable IOU
|
||||||
|
IOUDISOFF := $C07F ; Enable IOU
|
||||||
|
|||||||
@@ -175,6 +175,10 @@ INIT:
|
|||||||
; Switch into graphics mode
|
; Switch into graphics mode
|
||||||
bit MIXCLR
|
bit MIXCLR
|
||||||
bit HIRES
|
bit HIRES
|
||||||
|
.ifdef __APPLE2ENH__
|
||||||
|
sta IOUDISON
|
||||||
|
bit DHIRESOFF
|
||||||
|
.endif
|
||||||
bit TXTCLR
|
bit TXTCLR
|
||||||
|
|
||||||
; Beagle Bros Shape Mechanic fonts don't
|
; Beagle Bros Shape Mechanic fonts don't
|
||||||
|
|||||||
@@ -126,6 +126,10 @@ INIT:
|
|||||||
bit $C082 ; Switch in ROM
|
bit $C082 ; Switch in ROM
|
||||||
jsr SETGR
|
jsr SETGR
|
||||||
bit MIXCLR
|
bit MIXCLR
|
||||||
|
.ifdef __APPLE2ENH__
|
||||||
|
sta IOUDISON
|
||||||
|
bit DHIRESOFF
|
||||||
|
.endif
|
||||||
bit $C080 ; Switch in LC bank 2 for R/O
|
bit $C080 ; Switch in LC bank 2 for R/O
|
||||||
|
|
||||||
; Done, reset the error code
|
; Done, reset the error code
|
||||||
|
|||||||
Reference in New Issue
Block a user