1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 19:55:09 +00:00

Replaced reu commands with defined constants.

This commit is contained in:
Marco van den Heuvel 2018-03-05 17:46:51 -08:00
parent 1539acafc1
commit b783280577
2 changed files with 9 additions and 4 deletions

View File

@ -55,6 +55,8 @@ REU_TRIGGER = $FF00 ; REU command trigger
OP_COPYFROM = $ED
OP_COPYTO = $EC
OP_COPYFROM_ALOAD = $B1
OP_COPYTO_ALOAD = $B0
; ------------------------------------------------------------------------
; Data.
@ -99,7 +101,7 @@ INSTALL:
loop:
sty window
jsr reu_size_check_common
ldx #%10110000
ldx #OP_COPYTO_ALOAD
stx REU_COMMAND
dey
cpy #$FF
@ -107,7 +109,7 @@ loop:
iny
size_loop:
jsr reu_size_check_common
ldx #%10110001
ldx #OP_COPYFROM_ALOAD
stx REU_COMMAND
cpy window
bne size_found

View File

@ -55,6 +55,9 @@ REU_TRIGGER = $FF00 ; REU command trigger
OP_COPYFROM = $ED
OP_COPYTO = $EC
OP_COPYFROM_ALOAD = $B1
OP_COPYTO_ALOAD = $B0
; ------------------------------------------------------------------------
; Data.
@ -99,7 +102,7 @@ INSTALL:
loop:
sty window
jsr reu_size_check_common
ldx #%10110000
ldx #OP_COPYTO_ALOAD
stx REU_COMMAND
dey
cpy #$FF
@ -107,7 +110,7 @@ loop:
iny
size_loop:
jsr reu_size_check_common
ldx #%10110001
ldx #OP_COPYFROM_ALOAD
stx REU_COMMAND
cpy window
bne size_found