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.
私はいつも、この違いは何だろうと思っていました。
mov esi,eax
と
mov [esi],eax
だった。
どんな助けでも大歓迎です。
mov esi,eaxeaxregister の内容を registerに書き込みますesi。
eax
esi
mov [esi],eaxeaxregisterで指定されたメモリアドレスに register の内容を書き込みますesi(たとえば、esi値 0x1234 が含まれている場合、eaxアドレス 0x1234 に書き込まれます)。