首页 > 试题广场 >

下面的程序实现依次用内存0:0~0:15单元中的内容改写程序

[填空题]

下面的程序实现依次用内存0:0~0:15单元中的内容改写程序中的数据,完成程序: 

assume cs:codesg 
codesg segment 
       
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h 
start: mov ax,0        
        ov ds,ax        
        mov bx,0        
        mov cx,8    
s:  mov ax,[bx] 
     1
    add bx,2 
    loop s 
    mov ax,4c00h 
    int 21h 
codesg ends 
end start

这道题你会答吗?花几分钟告诉大家答案吧!