We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e631883 + 802d129 commit 7b74e96Copy full SHA for 7b74e96
2 files changed
lib/string-global.asm
@@ -0,0 +1,11 @@
1
+#import "string.asm"
2
+#importonce
3
+.filenamespace c128lib
4
+
5
+.macro @c128lib_StringCompare(string1Address, string2Address, switchToFastModeWhileRunning) { StringCompare(string1Address, string2Address, switchToFastModeWhileRunning) }
6
+.macro @c128lib_StringLength(stringAddress, switchToFastModeWhileRunning) { StringLength(stringAddress, switchToFastModeWhileRunning) }
7
+.macro @c128lib_StringCopy(sourceAddress, destinationAddress, switchToFastModeWhileRunning) { StringCopy(sourceAddress, destinationAddress, switchToFastModeWhileRunning) }
8
+.macro @c128lib_StringCopyLeft(sourceAddress, destinationAddress, numChars, switchToFastModeWhileRunning) { StringCopyLeft(sourceAddress, destinationAddress, numChars, switchToFastModeWhileRunning) }
9
+.macro @c128lib_StringCopyRight(sourceAddress, destinationAddress, sourceStrLength, numChars, switchToFastModeWhileRunning) { StringCopyRight(sourceAddress, destinationAddress, sourceStrLength, numChars, switchToFastModeWhileRunning) }
10
+.macro @c128lib_StringCopyMid(sourceAddress, destinationAddress, startPos, numChars, switchToFastModeWhileRunning) { StringCopyMid(sourceAddress, destinationAddress, startPos, numChars, switchToFastModeWhileRunning) }
11
+.macro @c128lib_StringConcatenate(string1Address, string2Address, string1Length, switchToFastModeWhileRunning) { StringConcatenate(string1Address, string2Address, string1Length, switchToFastModeWhileRunning) }
0 commit comments