mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Fix bug in tgi_line : HRS(X) parameters are 16 bits.
This commit is contained in:
parent
08705a3fdc
commit
026e57279d
@ -297,7 +297,13 @@ LINE:
|
|||||||
lda Y2
|
lda Y2
|
||||||
sta HRS4
|
sta HRS4
|
||||||
|
|
||||||
lda #$ff
|
lda #$00
|
||||||
|
sta HRS1+1
|
||||||
|
sta HRS2+1
|
||||||
|
sta HRS3+1
|
||||||
|
sta HRS4+1
|
||||||
|
|
||||||
|
lda #$FF
|
||||||
sta HRSPAT
|
sta HRSPAT
|
||||||
|
|
||||||
BRK_TELEMON(XDRAWA)
|
BRK_TELEMON(XDRAWA)
|
||||||
|
@ -290,7 +290,14 @@ LINE:
|
|||||||
lda Y2
|
lda Y2
|
||||||
sta HRS4
|
sta HRS4
|
||||||
|
|
||||||
lda #$ff
|
|
||||||
|
lda #$00
|
||||||
|
sta HRS1+1
|
||||||
|
sta HRS2+1
|
||||||
|
sta HRS3+1
|
||||||
|
sta HRS4+1
|
||||||
|
|
||||||
|
lda #$FF
|
||||||
sta HRSPAT
|
sta HRSPAT
|
||||||
|
|
||||||
BRK_TELEMON(XDRAWA)
|
BRK_TELEMON(XDRAWA)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user