Asembler X86/Przyklady/FASM/Hello
Przejdź do nawigacji
Przejdź do wyszukiwania
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[edytuj]
Kod źródłowy programu pochodzi z pakietu FASM autorstwa Tomasza Grysztara.