1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Fix bug in tgi_line : HRS(X) parameters are 16 bits.

This commit is contained in:
jede 2020-01-24 22:28:53 +01:00 committed by greg-king5
parent 08705a3fdc
commit 026e57279d
2 changed files with 15 additions and 2 deletions

View File

@ -297,7 +297,13 @@ LINE:
lda Y2
sta HRS4
lda #$ff
lda #$00
sta HRS1+1
sta HRS2+1
sta HRS3+1
sta HRS4+1
lda #$FF
sta HRSPAT
BRK_TELEMON(XDRAWA)

View File

@ -290,7 +290,14 @@ LINE:
lda Y2
sta HRS4
lda #$ff
lda #$00
sta HRS1+1
sta HRS2+1
sta HRS3+1
sta HRS4+1
lda #$FF
sta HRSPAT
BRK_TELEMON(XDRAWA)