.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,4
     mov ah,2
     mov dl,"2"
     level 1:
     int 21h
     inc dl
     inc dl
     loop level 1
     
     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: