From: cuz Date: Wed, 22 Oct 2003 21:04:22 +0000 (+0000) Subject: Fixed a bug in memcpy X-Git-Tag: V2.12.0~1232 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2c7218b5d95495a97b09034e4d53eef3c6f6e4d6;p=cc65 Fixed a bug in memcpy git-svn-id: svn://svn.cc65.org/cc65/trunk@2562 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/common/memcpy.s b/libsrc/common/memcpy.s index b61b82c1f..ff2c4bdde 100644 --- a/libsrc/common/memcpy.s +++ b/libsrc/common/memcpy.s @@ -23,16 +23,16 @@ memcpy_upwards: ; Copy loop @L1: inx ; Bump low counter byte - beq @L2 ; Jump on overflow - lda (ptr1),y + beq @L3 ; Jump on overflow +@L2: lda (ptr1),y sta (ptr2),y iny bne @L1 inc ptr1+1 ; Bump pointers inc ptr2+1 bne @L1 ; Branch always -@L2: inc ptr3+1 ; Bump high counter byte - bne @L1 +@L3: inc ptr3+1 ; Bump high counter byte + bne @L2 ; Done. The low byte of dest is still in ptr2