编程,向内存0:200~0:23f依次传递数据0~63(3fh),程序中只能使用9条指令,9条指中包括“mov ax,4c00h”和“int 21h”。 assume cs:code code segment mov ax,20h mov ds,ax mov bx,0 mov cx,40h ;或mov cx,64 s: mov [bx],bl inc bx loop s mov ax,4c00h int 21h code ends end