Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simpleprogrammer-shared/40dacf04bfaede9a7ebf36c1c2fab06f to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/40dacf04bfaede9a7ebf36c1c2fab06f to your computer and use it in GitHub Desktop.
What Makes Readable Code: Not What You Think 1
.model small
.stack 100h
.data
msg db 'Hello world!$'
.code
start:
mov ah, 09h ; Display the message
lea dx, msg
int 21h
mov ax, 4C00h ; Terminate the executable
int 21h
end start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment