home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / LordLucifer / win32asm / files / win32asm.exe / Win32ASM / Win32Proto / Skeleton.asm < prev    next >
Encoding:
Assembly Source File  |  1997-03-23  |  1.5 KB  |  64 lines

  1.     Page 60,190
  2.     TITLE ASM Skeleton - Module title here.
  3. ; ==========================================================================
  4. ; General module purpose and comments.
  5. ; ==========================================================================
  6.  
  7.  
  8. ; ==========================================================================
  9. ; ToDo List:
  10. ; ==========================================================================
  11.  
  12.  
  13.                 .586
  14.                 .MODEL FLAT,STDCALL
  15.  
  16.                 .NOLISTMACRO
  17.                 .NOLIST
  18.  
  19. UniCode         = 0
  20.  
  21.                 INCLUDE INSTR32.MAC
  22.                 INCLUDE WIN32INC.EQU
  23.  
  24.                 INCLUDE KERNEL32.EQU
  25.  
  26.                 .LIST
  27.  
  28.                 .CODE
  29.  
  30.  
  31.     PAGE
  32. ; =========================================================================
  33. ; Global Constants and data.
  34. ; =========================================================================
  35.  
  36.     .CONST
  37.  
  38.     .DATA
  39.  
  40.     PAGE
  41. ; =========================================================================
  42. ; First procedure.
  43. ; =========================================================================
  44.  
  45.     .CONST
  46.  
  47. MsgDone         BYTE 'All done. Press <Enter> to continue.',
  48.                      CR,LF
  49.  
  50. %MsgSignon      BYTE 'Signon message - ',
  51.                      "&@Date &@Time",   ;Generates assembly date/time here.
  52.                       CR,LF,LF
  53.  
  54.     .DATA
  55.  
  56.  
  57.     .CODE
  58.  
  59. Skel PROC
  60.     RET
  61. Skel ENDP
  62.  
  63.     END
  64.