Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用作弊引擎时,我偶然发现这两个操作码都会产生相同的汇编代码:
03C8 添加 ecx,eax
和
01C1 添加 ecx,eax
为什么会这样,有什么区别吗?
01形式是add r/m, r,形式03是add r, r/m。由于两个操作数都是寄存器,因此可以采用任何一种方式对其进行编码。
01
add r/m, r
03
add r, r/m