fixed incorrect jna/jbe (#6185)

This commit is contained in:
Duncan Ogilvie 2016-11-12 17:58:00 +01:00 committed by radare
parent 0deb096ea7
commit e16b490db5

View File

@ -267,7 +267,7 @@ iret=return from interrupt
ja=jump short if above (cf=0 and zf=0)
jae=jump short if above or equal (cf=0)
jb=jump short if below/not above nor equal/carry (cf=1)
jbe=jump short if below or equal/not above (cf=1 and zf=1)
jbe=jump short if below or equal/not above (cf=1 or zf=1)
jc=jump short if carry (cf=1)
jcxz=jump short if ecx register is 0
je=jump short if equal (zf=1)
@ -279,7 +279,7 @@ jle=jump short if less or equal/not greater (zf=1 or sf!=of)
jmp=jump
jmpe=jump to ia-64 instruction set
jmpf=jump
jna=jump short if not above/equal (cf=1 and zf=1)
jna=jump short if not above/equal (cf=1 or zf=1)
jnae=jump short if not above nor equal/below (cf=1)
jnb=jump short if not below/above or equal/not carry (cf=0)
jnbe=jump short if not below or equal/above (cf=0 and zf=0)