Allow STRCAT to take any number of args

Fixes bullet point 1 of #625
This commit is contained in:
ISSOtm
2020-12-12 17:55:41 +01:00
committed by Eldred Habert
parent 0d9de01f9d
commit 5aabb915ec
4 changed files with 29 additions and 15 deletions

9
test/asm/strcat.asm Normal file
View File

@@ -0,0 +1,9 @@
print: MACRO
PRINTT \1
PRINTT "\n"
ENDM
print STRCAT()
print STRCAT("Durrr")
print STRCAT("Left"\, "right")
print STRCAT("Whoa"\, "\, "\, "baby!")

0
test/asm/strcat.err Normal file
View File

4
test/asm/strcat.out Normal file
View File

@@ -0,0 +1,4 @@
Durrr
Leftright
Whoa, baby!