Skip to content

Instantly share code, notes, and snippets.

@abrarShariar
Created January 31, 2016 11:13
Show Gist options
  • Save abrarShariar/5cb97ba7e954a3073279 to your computer and use it in GitHub Desktop.
Save abrarShariar/5cb97ba7e954a3073279 to your computer and use it in GitHub Desktop.
string print
.model small
.stack 100h
.data
text db "HELLO WORLD $"
.code
main proc
mov bx,@data
mov ds,bx
mov ah,09h
mov dx,offset text
int 21h
mov ah,4ch
mov al,00
int 21h
main endp
end main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment