Skip to content

Instantly share code, notes, and snippets.

@k-payl
Last active August 29, 2015 13:56
Show Gist options
  • Save k-payl/9326980 to your computer and use it in GitHub Desktop.
Save k-payl/9326980 to your computer and use it in GitHub Desktop.
.486
.MODEL Flat, StdCall
INCLUDE stdlib.inc
INCLUDELIB msvcrt.lib
.CODE
main:
mov eax, 1
mov ebx, 2
add eax, ebx
call exit
end main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment