XCALL pma,COND
6-377
Flags and
Modes
V
If the V flag is tested by the condition, then V 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
; Call FuncA if VarA does not equal zero. This example only
; works for code located in upper 64K of program space:
MOV AL,@VarA ; Load AL with VarA
XCALL FuncA,NEQ ; Call FuncA if not equal to zero
.
.
FuncA: ; Function A:
.
.
XRETC UNC ; Return unconditionally