下面两行之间的区别是什么?
mov ax, bx
mov ax, [bx]如果bx包含值100h,并且在存储器地址100h处的值是23,则第二个拷贝23到ax吗
另外,下面这两行之间的区别是什么?
mov ax, 102h ; moves value of 102h into register ax
mov ax, [102h] ; Actual address is DS:0 + 102h发布于 2011-09-03 16:07:34
是。括号之间的操作数被视为地址和该内存地址处的值(如果提取)。
https://stackoverflow.com/questions/7291915
复制相似问题