1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Doc for new comment attribute

git-svn-id: svn://svn.cc65.org/cc65/trunk@3400 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-02-21 18:38:17 +00:00
parent 173349706a
commit 0566c8a1e2

View File

@ -313,6 +313,11 @@ following attributes are recognized:
<descrip> <descrip>
<tag><tt>COMMENT</tt></tag>
This attribute is only allowed if a label is also given. It takes a string
as argument. See the description of the <tt><ref id="infofile-label"
name="LABEL"></tt> directive for an explanation.
<tag><tt>END</tt></tag> <tag><tt>END</tt></tag>
This gives the end address of the range. The end address is inclusive, that This gives the end address of the range. The end address is inclusive, that
means, it is part of the range. Of course, it may not be smaller than the means, it is part of the range. Of course, it may not be smaller than the
@ -388,6 +393,20 @@ code. The following attributes are recognized:
<tag><tt>ADDR</tt></tag> <tag><tt>ADDR</tt></tag>
Followed by a numerical value. Specifies the value of the label. Followed by a numerical value. Specifies the value of the label.
<tag><tt>COMMENT</tt></tag>
Attribute argument is a string. The comment will show up in a separate line
before the label, if the label is within code or data range, or after the
label if it is outside.
Example output:
<tscreen><verb>
foo := $0001 ; Comment for label named "foo"
; Comment for label named "bar"
bar:
</verb></tscreen>
<tag><tt>NAME</tt></tag> <tag><tt>NAME</tt></tag>
The attribute is followed by a string value which gives the name of the The attribute is followed by a string value which gives the name of the
label. label.