mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
Added .CONCAT
git-svn-id: svn://svn.cc65.org/cc65/trunk@114 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
6b002da603
commit
294854ff13
19
doc/ca65.txt
19
doc/ca65.txt
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user