RosettaCodeData/Task/Hello-world-Graphical/X86-Assembly/hello-world-graphical-2.x86
2023-07-01 13:44:08 -04: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