Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Last active January 31, 2016 11:26
Show Gist options
  • Save ehzawad/e2defab7511321118195 to your computer and use it in GitHub Desktop.
Save ehzawad/e2defab7511321118195 to your computer and use it in GitHub Desktop.
.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