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

前端 未结 6 1987
暖寄归人
暖寄归人 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条回答
  •  逝去的感伤
    2021-01-06 15:16

    You should use a disassembler to see what are the instructions. You can grab NDISASM from the NASM package. Store the bytes in a file and run:

    ndisasm -b 32 file        # -b 32 specifies you're running in 32 bit mode
    

提交回复
热议问题