Description:
Set program counter to a new address if the Negative flag is clear and the Zero flag is clear (result is non-zero and positive).
Data (2 bytes):
short: 2-byte value for new PC
Pseudo Code:
if (!Z && !N) { pch=program[pc+1]; pcl=program[pc+2] }
else pc=pc+3
Flags Affected:
Possible Errors:
version: 1.0, build n.a.
© Copyright 1994-2012 Acroname, Inc., Boulder, Colorado. All rights reserved.