Asembler x86/Przykładowe programy/FASM/Hello
(Przekierowano z Asembler X86/Przykładowe programy/FASM/Hello)
Kod programu
edytuj; example of simplified Win32 programming using complex macro features
include 'win32ax.inc'
.code
start:
invoke MessageBox,HWND_DESKTOP,"Hi! I'm the example program!","Win32 Assembly",MB_OK
invoke ExitProcess,0
.end start
Licencja
edytujKod źródłowy programu pochodzi z pakietu FASM autorstwa Tomasza Grysztara.