RosettaCodeData/Task/Hello-world-Graphical/X86-Assembly/hello-world-graphical-2.x86
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
195 B
Text

;use win32ax for 32 bit
;use win64ax for 64 bit
include 'win64ax.inc'
.code
start:
invoke MessageBox,HWND_DESKTOP,"Goodbye,World!","Goodbye",MB_OK
invoke ExitProcess,0
.end start