tmlnsc 发表于 2011-7-20 14:32:58

请老师们看看实验五的第6题我的答案可不可以

assume cs:code
a segment
   dw 1,2,3,4,5,6,7,8,9,0ah,0bh,0ch,0dh,0eh,0fh,0ffh
a ends
b segment
   dw 0,0,0,0,0,0,0,0
b ends
code segment
start: mov ax,a
mov ds,ax
mov ax,b
mov ss,ax
mov sp,10h
mov bx,0
mov cx,8
s:push
    add bx,2
loop s
mov ax,4c00h
int 21h
code ends
end start
页: [1]
查看完整版本: 请老师们看看实验五的第6题我的答案可不可以