21,497
社区成员




assume cs:codesg
codesg segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
dw 0,0,0,0,0
start:
mov ax,cs ;cs为所填第一空
mov ss,ax
mov sp,1ah ;此条指令为所填第二空
mov ax,0
mov ds,ax
mov bx,0
mov cx,8
s:
push [bx]
pop cs:[bx] ;此条指令为所填第三空
add bx,2
loop s
mov ax,4c00h
int 21h
codesg ends
end start
datassg segment ;这是一个独立的段。
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
dataseg ends
stackseg segment ;这是另一个独立的段。
dw 0,0,0,0,0 ;定义了10个字节,但后面的6个字节也空着,
stackseg ends
codesg segment ;这是因为,codeseg又从下一个xxxx0H的地址开始
start:
...