Assembler control directives
Syntax
/*comment*/
//comment
CASEOFF
CASEON
ERROR "message"
RADIX expr
Parameters
| Comment ignored by the assembler. |
| Default base—default 10 (decimal). |
| Text to be displayed. |
Description
These directives provide control over the operation of the assembler. For information about the restrictions that apply when using a directive in an expression, see Expression restrictions.
Directive | Description | Expression restrictions |
|---|---|---|
C-style comment delimiter. | ||
C++ style comment delimiter. | ||
Disables case sensitivity. | ||
Enables case sensitivity. | ||
Generates an error. | ||
Sets the default base on all numeric values. | No forward references No external references Absolute Fixed |
Use /*...*/ to comment sections of the assembler listing.
Use // to mark the rest of the line as comment.
Use RADIX to set the default base for constants. The default base is 10.