Representation of Assembly instructions

Asked

Viewed 291 times

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 I had only hexadecimal values how would I get this Intel x86 instruction?

  • Give more details than you want. Show examples. With half questions you can’t even get 10% of an answer. And see if the tag is right too. Do not put any one. Put one that helps identify the problem.

  • 1

    These are Opcodes. You have to look in the processor manual. This website can also help you

  • You can accept an answer if it solved your problem. You can vote on every post on the site as well. Did any help you more? Something needs to be improved?

1 answer

2

Don’t even try this. It’s insane work. If you want to do this you better take one disassembler. See some available.

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.