Intel x86 Opcode Reference?

后端 未结 7 2024
孤城傲影
孤城傲影 2021-01-30 07:04

What is a relatively quick and easy method of looking up what an arbitrary opcode means (say, 0xC8) in x86?

The Intel Software Developer\'s manual

7条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-30 07:40

    Another way, using a debugger (gdb, windbg, ollydbg, ...) or disassembler (IDA), and then, set byte sequences in writable memory region. Finally, disassembly at the starting address of that byte sequences.
    It's seam complicated, but useful in some situations when you cracking/reversing.

提交回复
热议问题