JUMP NZ Z=0: IP ← IP + src (relative) -or- src (absolute)
Operation: Z=1: IP ← IP + 1
Encoding: 15 0
Example(s): JUMP NZ, label1 ; Z=1, branch taken
JUMP E E=1: IP ← IP + src (relative) -or- src (absolute)
Operation: E=0: IP ← IP + 1
Encoding: 15 0
Example(s): JUMP E, label1 ; E=1, branch taken
Special Notes: The src specifier must be immediate data.
JUMP NE
Operation: E=0: IP ← IP + src (relative) -or- src (absolute)
E=1: IP ← IP + 1
Encoding: 15 0
Example(s): JUMP NE, label1 ; E=0, branch taken
Special Notes: The src specifier must be immediate data.
JUMP S S=1: IP ← IP + src (relative) -or- src (absolute)
Operation: S=0: IP ← IP + 1
Encoding: 15 0
Example(s): JUMP S, label1 ; S=0, branch not taken
Comentarios a estos manuales