问题描述
所以我知道有许多组装,如MASM,FASM,NASM等。
So I understand that there are many assemblers such as MASM, FASM, NASM, etc.
但哪一个版本是在OllyDbg中和作弊引擎?
But which version is the disassembler in OllyDbg and Cheat Engine?
推荐答案
除非你已经知道了,OllyDbg的只支持(据我所知)x86指令集。所以,你看到的永远是8/16/32位指令。
Unless you already know, OllyDBG only supports (afaik) the x86 instruction set. So, what you're seeing will always be 8/16/32-bit instructions.
MASM,FASM和NASM都是基于英特尔的语法(而不是AT&安培;这是由气体在Unix主要用于T版),但在自己不同的(功能方面)
MASM, FASM and NASM are all based on the Intel syntax (as opposed to AT&T version which is primarily used on Unix by GAS), but are in themselves different (feature-wise).
OllyDbg的默认拆开来MASM语法。您可以进入选项改变这个 - >选项...
OllyDBG disassembles to MASM syntax by default. You can change this by going to Options -> Options...
维基百科给出的英特尔VS AT&放一个很好的例子; T语法:
Wikipedia gives a good example of Intel vs AT&T syntax: http://en.wikipedia.org/wiki/X86_assembly_language#Syntax
这篇关于哪个版本的组件不拆机OllyDbg的二进制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!