题目:下面的程序实现依次用内存0:0~0:15单元中的内容改写程序中的数据,完成程序: assume cs:code code segment dw 0123H,0456H,0789H,0abcH,0defH,0fedH,0cbaH,0987H start: mov ax,0 mov ds,ax mov bx,0 mov cx,8 s: add ax,[bx] _____________ add bx,2 loop s mov ax,4c00h int 21h code ends end start
答案:评论后可见此内容