.model small
.stack 100h
.data
a db "LOOPS$ "
.code
main proc
    mov ax,@data
    mov ds,ax
    
    mov ah,9
    lea dx,A
    int 21h
    
    mov ah,2
    mov dl,10
    int 21h
    
    mov dl,13
    int 21h
    
    mov cx,5 
    mov ah,2
    mov dl,"1"
    
    level1:
    int 21h
    inc dl
    inc dl
    loop level1
    exit:
    mov ah,4ch
    int 21h
    main endp
end main
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: