Show Menu
Cheatography

x86 Hex assembler instructions Cheat Sheet (DRAFT) by

Hexadecimal codes for x86 ASM instructions.

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Jumps

0F82||72
jb, jump if below
0F83||73
jnb, jump if not below
0F84||74
je, jump if equal
0F85||75
jne, jump if not equal
0F86||76
jbe, jump if below or equal
0F87||77
ja, jump if above
0F83
jae, jump if above or equal
0F86
jna, jump if not above
0F82
jnae, jump if not above or equal
0F87
jnbe, jump if not below or equal
0F8F
jg, jump if greater
0F8E
jng, jump if not greater
0F8D
jge, jump if greater or equal
0F8C
jnge, jump if not greater or equal
0F8C
jl, jump if less
0F8D
jnl, jump if not less
0F8E
jle, jump if less or equal
0F8F
jnle, jump if not less or equal
EB
jmp direcly to
 

Tests

84
Test

Others

90
nop, no operation