I need to disassemble command 8E C0, can you help me?
I already made this:
First byte 8E = 10001110b it's mov sr,reg/mem
But I don't know what to do with the second byte 11000000
feedback
|
|
You can wade through the intel docs to work it out yourself, or you can use a disassembler which is far easier. The answer is:
I use yasm, and did the following:
If you want to do this by hand, the bytes can by interpreted as follows.
The Looking up in the appropriate table, Mod of | |||||||||||
feedback
|