CLRC AMODE
6-67
CLRC AMODE Clear the AMODE Bit
SYNTAX OPTIONS OPCODE OBJMODE RPT CYC
CLRC AMODE 0101 0110 0001 0110 X − 1
Operands
AMODE
Status bit
Description Clear the AMODE status bit in Status Register ST1, enabling C27x/C28x
addressing (see Chapter 5).
Note: This instruction does not flush the pipeline.
Flags and
Modes
AMODE
The AMODE bit is cleared.
Repeat This instruction is not repeatable. If this instruction follows the RPT
instruction, it resets the repeat counter (RPTC) and executes only once.
Example ;
Execute the operation ”VarC = VarA + VarB” written in C2xLP
; syntax:
SETC AMODE ; Full C2xLP address-compatible mode
.lp_amode ; Tell assembler we are in C2xLP mode
LDP #VarA ; Initialize DP (low 64K only)
LACL VarA ; ACC = VarA (ACC high = 0)
ADDS VarB ; ACC = ACC + VarB (unsigned)
SACL VarC ; Store result into VarC
CLRC AMODE ; Return to C28x address mode
.c28_amode ; Tell assembler we are in C28x mode