Last active
December 3, 2021 05:13
-
-
Save knowlet/47523a18dc51f5197b22 to your computer and use it in GitHub Desktop.
An assembly template
This file contains 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
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