
Assembler Significant Characters And Directives
Assembler Directives
6-24
DSP ASSEMBLER REFERENCE MANUAL
For More Information On This Product,
Go to: www.freescale.com
MOTOROLA
#>
Immediate Long Addressing Mode Force Operator
Many DSP instructions allow a long immediate form of addressing. If the immediate data
is known to the Assembler on pass one (not a forward or external reference), then the As-
sembler will always pick the shortest form of immediate addressing consistent with the in-
struction, unless the
FORCE
LONG directive is active. If this is not desired, then the long
form of addressing can be forced using the immediate long addressing mode force oper-
ator (
#>
).
See also:
FORCE
EXAMPLE:
In the following sequence of source lines, the symbol CNST is known to the Assembler
on pass one, and therefore, the Assembler would use the short immediate addressing
form for the
MOVE
instruction.
CNST
EQU
MOVE
$5
#CNST,D0.L
If this is not desirable, then the long immediate form of addressing can be forced as shown
below:
CNST
EQU
MOVE
$5
#>
CNST,D0.L
F
Freescale Semiconductor, Inc.
n
.