mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 22:00:18 +00:00
fixed incorrect jna/jbe (#6185)
This commit is contained in:
parent
0deb096ea7
commit
e16b490db5
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user