Hi all,
I thought windbg is easy to get a JMP rel8 instruction’s machine code,however, after many times experiments and tries, I still unexpectedly get a JMP rel32 instruction’s machine code instead,as follows,
0:000> a
7734e6e6 jmp 10 <==hope to get a JMP rel8 instruction’s machine code
jmp 10
7734e6eb
0:000> u 7734e6e6
ntdll!..:
7734e6e6 e92519cb88 jmp 00000010 <==unexpectedly get a JMP rel32 instruction’s machine code
Could someone know how to specify the size of a JMP Instruction(e.g. JMP BYTE ) ?
Thanks.
-Matt