<<< Write Fast Code | Index | Data-Related Operators and Directives >>> |
Reserved words in MASM include:
Instructions, which correspond to operations the processor can execute.
Directives, which give commands to the assembler.
Attributes, which provide a value for a field, such as segment alignment.
Operators, which are used in expressions.
Predefined symbols, which return information to your program.
MASM reserved words are not case sensitive except for predefined symbols.
The assembler generates an error if you use a reserved word as a variable, code label, or other identifier.
<<< Write Fast Code | Index | Data-Related Operators and Directives >>> |