.model small
.stack 100h
.data
a db "I love Assembly$"
.code
main proc
    mov ax,@data
    mov ds,ax
    mov ah,9
    lea dx,a
    int 21h
    
    exit:
    mov ah,4ch
    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: