;ÏÔʾ´Ó0-255±àÂëµÄASCII×Ö·û. stack segment stack db 100 dup(?) stack ends code segment assume cs:code p1: mov cx,100h mov dl,0 x1: mov ah,2 int 21h inc dl loop x1 mov ah,4ch int 21h code ends end p1