Skip to content

Instantly share code, notes, and snippets.

@knowlet
Last active December 3, 2021 05:13
Show Gist options
  • Save knowlet/47523a18dc51f5197b22 to your computer and use it in GitHub Desktop.
Save knowlet/47523a18dc51f5197b22 to your computer and use it in GitHub Desktop.
An assembly template
INCLUDE Irvine32.inc
.data
buffer BYTE "Hello ASM!", 0
.code
main PROC
mov edx, OFFSET buffer
call WriteString
call Crlf
call WaitMsg
exit
main ENDP
END main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment