1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Added .CONCAT

git-svn-id: svn://svn.cc65.org/cc65/trunk@114 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-06-23 20:56:07 +00:00
parent 6b002da603
commit 294854ff13

View File

@ -304,6 +304,7 @@ Available operators sorted by precedence:
-------------------------------------------------------------------
* Builtin pseudo variable (r/o) 1
.BLANK Builtin function 1
.CONCAT Builtin function 1
.CONST Builtin function 1
.CPU Builtin pseudo variable (r/o) 1
.DEFINED Builtin function 1
@ -637,6 +638,24 @@ Here's a list of all control commands and a description, what they do:
See also the .SEGMENT command.
.CONCAT
Builtin function. The function allows to concatenate a list of string
constants separated by commas. The result is a string constant that
is the concatentation of all arguments. This function is most useful
in macros and when used together with the .STRING builtin function.
The function may be used in any case where a string constant is
expected.
Example:
.include .concat ("myheader", ".", "inc)
This is the same as the command
.include "myheader.inc"
.CONST
Builtin function. The function evaluates its argument in braces and