Created
February 21, 2018 14:44
-
-
Save alastorid/f5a2fbe2815951d50100d30879b1abf8 to your computer and use it in GitHub Desktop.
tiny win32 nasm
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
; a.asm | |
BITS 32 | |
GLOBAL main | |
SEGMENT .text | |
main: | |
ret |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
compile with:
nasm a.asm -fwin32
alink -oPE -entry main xclm.obj