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.
重複の可能性: x86 asmでの括弧の意味は何ですか?
私はこれについてしばらく混乱してきました。「si」と「[si]」の違いは何ですか?(これは16ビットNASM構文を使用しています)
siレジスタを指しますsi。[si]が指すアドレスを参照しますsi。
si
[si]
mov ax, si // Copy the "si" to "ax". mov ax, [si] // Load the value stored at address "si" into "ax".