已知汇编源程序ex2.asm代码如下。对源程序汇编、链接得到可执行程序后运行,在屏幕上输出的是什么
;ex2.asmassume cs:codecode segmentmov d1,'0'mov cx, 10s: mov ah, 2int 021hadd d1, 1loop s
mov ah, 4ch int 21h
code endsend
屏幕上显示0123456789