mirror of
https://github.com/cea-sec/miasm
synced 2026-06-21 13:48:18 +00:00
53d82c13f7
The assembler will automatically use instruction len in offset computation In the following instruction: 0x10: EB 02 JMP 0x14 If we assemble this instruction, the requested instruction send to the assembler engine will be: JMP +0x4 And will be encoded to: EB 02 Previously, the assembly of: JMP +0x4 was: EB 04