trump 发表于 2014-6-29 17:33:20

检测点10.2

下面的程序执行后,ax中的数值为多少?
assume cs:codesg
codesg segment
start:
        mov ax,0
        call s
        inc ax
s:
        pop ax
       
        mov ax,4c00h
        int 21h
codesg ends
end startax为6('inc ax'所在内存地址偏移量)。
页: [1]
查看完整版本: 检测点10.2