Created
January 31, 2016 11:13
-
-
Save abrarShariar/5cb97ba7e954a3073279 to your computer and use it in GitHub Desktop.
string print
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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