Section 3: Assembler
219
TI
-
89 / TI
-
92 Plus Sierra C Assembler Reference Manual
Not for Distribution
Beta Version February 2, 2001
.cmnt — Begin Comment Block
Syntax
.cmnt
Description
The .cmnt directive begins a comment block. All assembler statements between
this directive and its matching .endc directive are ignored. Pairs of comment
block directives can be nested.
Example
.cmnt
These lines are ignored by
the assembler; no other
comment markers are needed.
.endc
COMLINE — Allocate a Block of Uninitialized Memory
Syntax
COMLINE
count
Description
count
Specifies the number of bytes to allocate. It is an absolute
expression that cannot contain any forward, external, or undefined
references.
The COMLINE directive is functionally equivalent to the DS.B directive. It
allocates a block of uninitialized memory whose size is determined by
count.
Each byte is filled with the current fill value (see OPT FILLVAL), unless the
section is of BSS-type. This directive’s intended use is not applicable to asm68k;
it is supported only for Motorola compatibility.