I have some machine codes as follow:
FF 25 CA 21 00 00
I know it's a JMP
's opcode with Op/En set to M, which means there's a ModR/M byte after it.
0x25
=> 0x00100101
, so the reg
is 0b100, and the opcode is actually FF /4
. However, the only matching one in JMP opcode summary table is:
FF /4 ---- JMP r/m64 ---- Jump near, absolute indirect, RIP = 64-Bit offset from register or memory
This means what follows the ModR/M byte should be a 64-bit operand. But I only have a 32-bit operand, CA 21 00 00
.
Did I miss something? Give me some hints on this.