stos2.asm
No se que hace
;Autor Hector Torres
;URL
.model small
.stack
.data
cadena db '1234567890$'
cadena2 db 10 dup(' '),'$'
.code
.startup
std
mov AX,DS
mov ES,AX
mov al,'@'
mov CX,5
lea DI,cadena
add DI,10
rep stosb
mov ah,09h
lea dx,cadena
int 21h
.exit
end