彙編語言實驗五

(一)將下面的程序編譯、鏈接,用 Debug 加載、跟蹤,而後回答問題spa

assume cs:code,ds:data,ss:stack

data segment
       dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
data ends

stack segment
        dw 0,0,0,0,0,0,0,0
stack ends

code segment
start:   mov ax,stack
         mov ss,ax
         mov sp,16
         
         mov ax,data
         mov ds,ax

         push ds:[0]
         push ds:[2]
         pop  ds:[2]
         pop  ds:[0]

         mov ax,4c00h
         int 21h
code ends
end start

 (1)編輯3d

(2)編譯、鏈接code

相關文章
相關標籤/搜索