1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

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 jsr memcpy_getparams
memcpy_increment: memcpy_increment:
ldy #$73 ; TII ldy #$73 ; TII opcode
memcpy_transfer: memcpy_transfer:
sty transfer+opcode sty transfer + opcode
lda ptr1 lda ptr1
ldx ptr1+1 ldx ptr1+1
sta transfer+source sta transfer + source
stx transfer+source+1 stx transfer + source+1
lda ptr2 lda ptr2
ldx ptr2+1 ldx ptr2+1
sta transfer+destination sta transfer + destination
stx transfer+destination+1 stx transfer + destination+1
lda ptr3 lda ptr3
ldx ptr3+1 ldx ptr3+1
sta transfer+length sta transfer + length
stx transfer+length+1 stx transfer + length+1
jmp transfer jmp transfer

View File

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