We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
concat(string1, string2)
This function concatenates two pieces of data, typically strings, together into a single piece of data.
#define worldString "world" #define spaceChar $20 #define helloString concat("hello", spaceChar) #define helloWorldString concat(helloString, worldString)
helloWorldString now holds the data for "hello world"
The following two statements are equivalent:
.db helloWorldString,0
.db "hello world",0