home *** CD-ROM | disk | FTP | other *** search
- ; 2nd&mi
- .386P
- Locals
- jumps
-
- .Model Flat ,StdCall
-
-
- ;Define the needed external functions and constants here.
- Extrn ExitProcess:PROC
- Extrn MessageBoxA:PROC
- Extrn CreateFileA:PROC
-
- .Data
- Title1 db 'FUCK!',0
- Message1 db 0dh,0ah,' Stone is not a god ',0dh,0ah,0
-
-
- db "2nd&mi"
-
- .Code
- ;──────────────────────────────────────────────────────────────────────────────
- Main:
- Push 0
- Push offset Title1
- Push offset Message1
- Push 0
- Call MessageBoxA
-
- Push 0
- Push offset Title1
- Push offset Message1
- Push 0
- Call MessageBoxA
-
- Exit_Proc:
- Push LARGE-1
- Call ExitProcess
- ;──────────────────────────────────────────────────────────────────────────────
- End Main