How might I convert Intel 80386 Machine Code to Assembly Language?

前端 未结 6 2024
暖寄归人
暖寄归人 2021-01-06 15:07

I\'ve been given the following task:

Consider the following sequence of hexadecimal values:

55 89 E5 83 EC 08 83 E4 F0 31 C9 BA 01 00 00 0

6条回答
  •  梦毁少年i
    2021-01-06 15:21

    There's a much simpler method than those suggested, and I suspect this is the one the teacher has in mind:

    1. Go to a command prompt
    2. run Debug
    3. command "e"
    4. enter the byte values
    5. command "u"
    6. read the results

    Decoding opcodes from the chart is very, very tedious, and I'd be surprised if that was what was intended.

提交回复
热议问题