Hi,
I have a small assembled program (i.e., I have the binary) that does:
mov esi,esp
to move the contents of the ESP register to the ESI register, and I'm trying to reproduce the source and then re-assembling using NASM.
However, the output from NASM is coming out as:
89E6
whereas the original binary has:
8BF4
What is the NASM source syntax that would assemble:
move esi,esp
into 8BF4?
Thanks,
Jim