Skip to content

Commit 0445050

Browse files
kroemekecondret
authored andcommitted
Added je jg jge jne opcode descriptions.
1 parent fba602f commit 0445050

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

libr/asm/d/x86

+4
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,17 @@ iretq=interrupt return (64 bit)
246246
jb=jump short if below/not above or equal/carry (cf=1)
247247
jbe=jump short if below or equal/not above (cf=1 and zf=1)
248248
jcxz=jump short if ecx register is 0
249+
je=jump short if equal (zf=1)
250+
jg=jump short if greater (zf=0 and sf=of)
251+
jge=jump short if greater or equal (sf=of)
249252
jl=jump short if less/not greater (sf!=of)
250253
jle=jump short if less or equal/not greater ((zf=1) or (sf!=of))
251254
jmp=jump
252255
jmpe=jump to ia-64 instruction set
253256
jmpf=jump
254257
jnb=jump short if not below/above or equal/not carry (cf=0)
255258
jnbe=jump short if not below or equal/above (cf=0 and zf=0)
259+
jne=jump short if not equal (zf=0)
256260
jnl=jump short if not less/greater or equal (sf=of)
257261
jnle=jump short if not less nor equal/greater ((zf=0) and (sf=of))
258262
jno=jump short if not overflow (of=0)

0 commit comments

Comments
 (0)