home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Stone / windows / stnapih.arj / TARGET / TARGET.ASM < prev    next >
Encoding:
Assembly Source File  |  1998-02-21  |  892 b   |  40 lines

  1. ; 2nd&mi
  2. .386P
  3. Locals
  4. jumps
  5.  
  6. .Model Flat ,StdCall
  7.  
  8.  
  9. ;Define the needed external functions and constants here.
  10. Extrn           ExitProcess:PROC
  11. Extrn           MessageBoxA:PROC                
  12. Extrn           CreateFileA:PROC                
  13.  
  14. .Data                                        
  15. Title1          db 'FUCK!',0
  16. Message1        db 0dh,0ah,' Stone is not a god ',0dh,0ah,0
  17.  
  18.  
  19. db "2nd&mi"
  20.  
  21. .Code                                  
  22. ;──────────────────────────────────────────────────────────────────────────────
  23. Main:
  24.      Push 0
  25.      Push offset Title1
  26.      Push offset Message1
  27.      Push 0
  28.      Call MessageBoxA 
  29.  
  30.      Push 0
  31.      Push offset Title1
  32.      Push offset Message1
  33.      Push 0
  34.      Call MessageBoxA 
  35.  
  36. Exit_Proc:
  37.      Push LARGE-1
  38.      Call ExitProcess
  39. ;──────────────────────────────────────────────────────────────────────────────
  40. End Main