1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 02:17:07 +00:00

Fixed CPU-flag usage which fails on build server?!

This commit is contained in:
IrgendwerA8
2017-03-05 11:38:55 +01:00
parent 81115aa826
commit 8d1b80e6fd
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -8,6 +8,7 @@
.export _strcat
.import popax
.importzp ptr1, ptr2, tmp3
.macpack cpu
_strcat:
sta ptr1 ; Save src
+1
View File
@@ -8,6 +8,7 @@
.export _strchr
.import popax
.importzp ptr1, tmp1
.macpack cpu
_strchr:
sta tmp1 ; Save c
+2 -1
View File
@@ -8,7 +8,8 @@
.export _strncat
.import popax
.importzp ptr1, ptr2, ptr3, tmp1, tmp2
.macpack cpu
_strncat:
eor #$FF ; one's complement to count upwards
sta tmp1