RosettaCodeData/Task/Hello-world-Graphical/X86-Assembly/hello-world-graphical-2.x86

10 lines
195 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
;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