求各位DX指点啊
data segment
str db 80
db ?
db 80 dup(?)
data ends
code segment
assume cs:code,ds data
start:
mov ax,data
mov ds,ax
mov dx,offset str
mov ah,oah
int 21h
mov dl,0ah
mov ah,02h
int 21h
mov cl,str+1
mov ch,0
mov si,offset str+2
dloop:
mov dl,[si]
mov ah,02h
int 21h
inc si
loop dloop
mov ax,4c00h
int 21h
code ends
end start

上面那段是显示依此显示DS中的数,怎么用lodsb和stosb实现把数转到ES中然后再显示出来呢????[em10]