Fix 16 bits values
This commit is contained in:
parent
026e57279d
commit
0962a9f286
2 changed files with 16 additions and 4 deletions
|
@ -296,12 +296,18 @@ LINE:
|
|||
sta HRS3
|
||||
lda Y2
|
||||
sta HRS4
|
||||
|
||||
lda #$00
|
||||
|
||||
lda X1+1
|
||||
sta HRS1+1
|
||||
|
||||
lda Y1+1
|
||||
sta HRS2+1
|
||||
|
||||
lda X2+1
|
||||
sta HRS3+1
|
||||
sta HRS4+1
|
||||
|
||||
lda Y2+1
|
||||
sta HRS4+1
|
||||
|
||||
lda #$FF
|
||||
sta HRSPAT
|
||||
|
|
|
@ -291,10 +291,16 @@ LINE:
|
|||
sta HRS4
|
||||
|
||||
|
||||
lda #$00
|
||||
lda X1+1
|
||||
sta HRS1+1
|
||||
|
||||
lda Y1+1
|
||||
sta HRS2+1
|
||||
|
||||
lda X2+1
|
||||
sta HRS3+1
|
||||
|
||||
lda Y2+1
|
||||
sta HRS4+1
|
||||
|
||||
lda #$FF
|
||||
|
|
Loading…
Add table
Reference in a new issue