mirror of
https://github.com/bobbimanners/Applecorn.git
synced 2025-04-10 03:37:42 +00:00
Completely disable scroll in VDU5 mode
This commit is contained in:
parent
a9eb0ec1ee
commit
01a7702ee4
BIN
applecorn.po
BIN
applecorn.po
Binary file not shown.
12
auxmem.vdu.s
12
auxmem.vdu.s
@ -514,7 +514,11 @@ VDU09 LDA VDUTEXTX ; COL
|
||||
:DONE RTS
|
||||
:S2 INC VDUTEXTX ; COL
|
||||
BRA :DONE
|
||||
SCROLL JSR SCROLLER
|
||||
SCROLL LDA VDUSTATUS
|
||||
AND #$20 ; Bit 5 VDU5 mode
|
||||
BEQ :VDU4
|
||||
RTS ; No scroll in VDU5
|
||||
:VDU4 JSR SCROLLER
|
||||
LDA TXTWINLFT
|
||||
STA VDUTEXTX
|
||||
JSR CLREOL
|
||||
@ -774,11 +778,7 @@ CLREOLGS BIT RD80VID
|
||||
* Scroll areas of the screen
|
||||
****************************
|
||||
* Scroll text window up one line
|
||||
SCROLLER LDA VDUSTATUS
|
||||
AND #$20 ; Bit 5 VDU5 mode
|
||||
BEQ :VDU4
|
||||
RTS ; No scroll in VDU5
|
||||
:VDU4 LDA TXTWINTOP
|
||||
SCROLLER LDA TXTWINTOP
|
||||
:L1 PHA
|
||||
JSR SCR1LINE
|
||||
BIT VDUSCREEN
|
||||
|
Loading…
x
Reference in New Issue
Block a user