lods2.asm

No se que hace

Búsqueda de ejemplos en Ensamblador
;Autor Hector Torres
;URL

.model small
.stack
.data

  cad db 'hola monti te quiero$'

.code
.startup

 lea SI,cad
 mov cx,12
 rep lodsb

 mov dl,al
 mov ah,02h
 int 21h

.exit
end