Representation of assembly instructions [duplicate]

0

How to interpret an Assembly statement with its hexadecimal value in a memory address?

8B 4C 24 04 CORRESPONDS TO THIS - > MOV ECX,DWORD PTR SS:[ESP+4]

But if you only had the hexadecimal values how would you get to this Intel x86 instruction?

    
asked by anonymous 11.10.2015 / 01:48

1 answer

2

Do not even try this. It's insane work. If you want to do this, it's best to get a disassembler . See some available .

If you want to do this insanity you have to read all the documentation of the processor. It's a lot more complicated than you think, even for the most experienced low-level programmers.

    
11.10.2015 / 02:52