5 Assembler Directives
Assembler directives are tool commands, which appear in the source code but which are not usually translated directly into instruction opcodes. They are used to control the assembler's input, output, and data allocation.
All assembler directives have names that begin with a period (.
). The
names are case insensitive but are usually written in lower case.
Note: Assembler directives are not target
instructions (such as
ADD
, XOR
, JAL
, etc.). For instruction set
information, consult the data sheet for your target device.