So basically I am trying to re-use some asm code disassembled from objdump
on 32 bit Linux, ELF binary.
In the disassembled file, I see this instruction:
8057a01: f3 c3 repz ret
and when I try to re-use repz ret
in my asm code, I got this error:
Error: expecting string instruction after `repz'
I tried to specify a ret
type like this:
repz retq
but I still got the same error again..
Could anyone give me some help?