Assembly

Assembly 为什么 data 是 076C

2023-02-21  本文已影响0人  Rinaloving

为什么 data 是 076CH

1. 代码段

assume cs:codecs,ds:datasg
datasg segment
        dw 013aH
datasg ends
codecs segment
    mov ax, datasg
    mov bx, 0
    mov ds, ax
    ;mov bx,[0]
    mov bx,[bx]
    ;mov bx, 0006H
    add ax, bx
codecs ends
end

2. 说明

mov bx, [0] 与 mov bx, [bx] 为什么不一样

上一篇下一篇

猜你喜欢

热点阅读