mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 01:31:55 +00:00
Documented .VERSION
git-svn-id: svn://svn.cc65.org/cc65/trunk@2281 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
fcfaaee3a9
commit
67a7e672b1
@ -417,6 +417,7 @@ Available operators sorted by precedence:
|
|||||||
.MATCH Builtin function 1
|
.MATCH Builtin function 1
|
||||||
.TCOUNT Builtin function 1
|
.TCOUNT Builtin function 1
|
||||||
.TIME Builtin function 1
|
.TIME Builtin function 1
|
||||||
|
.VERSION Builtin function 1
|
||||||
.XMATCH Builtin function 1
|
.XMATCH Builtin function 1
|
||||||
.PARAMCOUNT Builtin pseudo variable (r/o) 1
|
.PARAMCOUNT Builtin pseudo variable (r/o) 1
|
||||||
.REFERENCED Builtin function 1
|
.REFERENCED Builtin function 1
|
||||||
@ -2312,6 +2313,22 @@ Here's a list of all control commands and a description, what they do:
|
|||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
|
|
||||||
|
<sect1><tt>.VERSION</tt><label id=".VERSION"><p>
|
||||||
|
|
||||||
|
Reading this pseudo variable will give the assembler version according to
|
||||||
|
the following formula:
|
||||||
|
|
||||||
|
VER_MAJOR*$100 + VER_MINOR*$10 + VER_PATCH
|
||||||
|
|
||||||
|
It may be used to encode the assembler version or check the assembler for
|
||||||
|
special features not available with older versions.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
Version 2.11.1 of the assembler will return $2B1 as numerical constant when
|
||||||
|
reading the pseudo variable <tt/.VERSION/.
|
||||||
|
|
||||||
|
|
||||||
<sect1><tt>.WARNING</tt><label id=".WARNING"><p>
|
<sect1><tt>.WARNING</tt><label id=".WARNING"><p>
|
||||||
|
|
||||||
Force an assembly warning. The assembler will output a warning message
|
Force an assembly warning. The assembler will output a warning message
|
||||||
|
Loading…
Reference in New Issue
Block a user