You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hex immediates in the mov instruction can be stripped of the hex prefix 0x causing an error with finding the address immediate in process_reloc.
mov is included in instructions_with_address_immediates for I686.
Code that removes the hex prefix:
addr=""ifmnemonicinarch.instructions_with_address_immediates:
row, addr=split_off_address(row)
# objdump prefixes addresses with 0x/-0x if they don't resolve to some# symbol + offset. Strip that.addr=addr.replace("0x", "")
Hex immediates in the mov instruction can be stripped of the hex prefix
0x
causing an error with finding the address immediate inprocess_reloc
.mov
is included ininstructions_with_address_immediates
forI686
.Code that removes the hex prefix:
decomp.me scratch:
https://decomp.me/scratch/dA1P1
Relevant line of code:
g_EnemyManagerDrawChain.arg = mgr;
objdump output:
0x1c
is an offset which the relocation should be applied to:mov %edx,?g_EnemyManagerDrawChain@@3VChainElem@@A-0xee5ec+0x1c
The text was updated successfully, but these errors were encountered: