summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt2
-rw-r--r--zp/GNUmakefile4
-rw-r--r--zp/source/arm64/mem/memcpy.s4
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 702a53c..a01c9c8 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -73,6 +73,8 @@
* Fix object variable names in makefile;
+* Fix wrong symbols;
+
# 0.0.2
* Migrate to CMake;
diff --git a/zp/GNUmakefile b/zp/GNUmakefile
index 1c4a45f..41916fb 100644
--- a/zp/GNUmakefile
+++ b/zp/GNUmakefile
@@ -75,12 +75,12 @@ OBJ_MEM_MEMFIL := source/amd64/mem/memfil.o
else ifeq "$(targ)" "arm"
OBJ_BS_SYSCL := source/arm/bs/syscl.o
-OBJ_MEM_MEMCPY := source/arm/mem/memcpy.o
+OBJ_MEM_MEMCPY := source/arm/mem/memcpy.o
else ifeq "$(targ)" "arm64"
OBJ_BS_SYSCL := source/arm64/bs/syscl.o
-OBJ_MEM_MEMCPY := source/arm64/mem/memcpy.o
+OBJ_MEM_MEMCPY := source/arm64/mem/memcpy.o
else ifeq "$(targ)" "ia32"
diff --git a/zp/source/arm64/mem/memcpy.s b/zp/source/arm64/mem/memcpy.s
index 91fbcf7..ecc7c96 100644
--- a/zp/source/arm64/mem/memcpy.s
+++ b/zp/source/arm64/mem/memcpy.s
@@ -2,11 +2,11 @@
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtasrc one at <https://mozilla.org/MPL/2.0>.
-.globl zp_cp
+.globl zp_memcpy
.func
-zp_cp:
+zp_memcpy:
// zp_i8 tmp1;
// zp_i04 tmp4;