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.
次の 2 行の違いは何ですか?
mov ax, bx mov ax, [bx]
値bx100h が含まれ、メモリ アドレス 100h の値が 23 の場合、2 番目の値は 23 を にコピーしaxますか?
bx
ax
また、次の 2 つの行の違いは何ですか?
mov ax, 102h ; moves value of 102h into register ax mov ax, [102h] ; Actual address is DS:0 + 102h
はい。括弧内のオペランドはアドレスとして扱われ、フェッチされた場合はそのメモリ アドレスの値になります。