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