Style changes.

This commit is contained in:
Greg King 2015-11-07 00:29:07 -05:00
parent 999d57401c
commit 5e36315d05
2 changed files with 9 additions and 9 deletions

View File

@ -35,25 +35,25 @@ _memcpy:
jsr memcpy_getparams
memcpy_increment:
ldy #$73 ; TII
ldy #$73 ; TII opcode
memcpy_transfer:
sty transfer+opcode
sty transfer + opcode
lda ptr1
ldx ptr1+1
sta transfer+source
stx transfer+source+1
sta transfer + source
stx transfer + source+1
lda ptr2
ldx ptr2+1
sta transfer+destination
stx transfer+destination+1
sta transfer + destination
stx transfer + destination+1
lda ptr3
ldx ptr3+1
sta transfer+length
stx transfer+length+1
sta transfer + length
stx transfer + length+1
jmp transfer

View File

@ -59,5 +59,5 @@ _memmove:
dec ptr2+1
@L2: dec ptr2
ldy #$C3 ; TDD
ldy #$C3 ; TDD opcode
jmp memcpy_transfer