In the register dump displayed by the R, T, P and G commands, conditional
jumps are displayed with a notice that shows whether the instruction will
cause a jump depending on its condition and the current register and flag
contents. This notice shows either "jumping" or "not jumping" as appropriate.

The conditional jumps use these conditions: (second column negates)
 jo		jno		OF
 jc jb jnae	jnc jnb jae	CF
 jz je		jnz jne		ZF
 jbe jna	jnbe ja		ZF||CF
 js		jns		SF
 jp jpe		jnp jpo		PF
 jl jnge	jnl jge		OF^^SF
 jle jng	jnle jg		OF^^SF || ZF
 j(e)cxz			(e)cx==0
 loop				(e)cx!=1
 loopz loope			(e)cx!=1 && ZF
 loopnz loopne			(e)cx!=1 && !ZF

Enter ?F to display a description of the flag names.
