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

  1.     Page 60,190
  2.     TITLE ASM Skeleton - Module title here.
  3.     SUBTTL General info and includes.
  4. ; ============================================================================
  5. ; General module purpose and comments.
  6. ;
  7. ; ============================================================================
  8. ; $Id: Skeleton.asm 1.1 1997/09/02 09:50:48 Philippe Exp $
  9. ; ============================================================================
  10. ; Created  on 30.10.96 by Philippe Auphelle
  11. ; $Log: /Win32Equ/Skeleton.asm $
  12. ; 1     18/09/97 14:24 Philippe
  13. ; Initial checkin into SourceSafe.
  14. ; Revision 1.1  1997/09/02 09:50:48  Philippe
  15. ; Initial revision
  16. ;
  17. ; ============================================================================
  18.  
  19.  
  20.  
  21. ; ============================================================================
  22. ; ToDo List:
  23. ; - ...
  24. ; ============================================================================
  25.  
  26.  
  27.                 .586
  28.                 .MODEL FLAT,STDCALL
  29.  
  30.                 .NOLISTMACRO
  31.                 .NOLIST
  32.  
  33. UniCode         = 0
  34.  
  35.                 INCLUDE INSTR32.MAC
  36.                 INCLUDE WIN32INC.EQU
  37.  
  38.                 INCLUDE KERNEL32.EQU
  39.  
  40.                 .LIST
  41.  
  42.                 .CODE
  43.  
  44.  
  45.     SUBTTL Global constants and data.
  46.     PAGE
  47. ; ============================================================================
  48. ; Global Constants and data.
  49. ; ============================================================================
  50.  
  51.     .CONST
  52.  
  53.     .DATA
  54.  
  55.     ALIGN DWORD
  56.  
  57.     SUBTTL Main (public) routines.
  58.     PAGE
  59. ; ============================================================================
  60. ; First procedure.
  61. ; ============================================================================
  62.  
  63.     .CONST
  64.  
  65. MsgDone         BYTE 'All done. Press <Enter> to continue.',
  66.                      CR,LF
  67.  
  68. %MsgSignon      BYTE 'Signon message - ',
  69.                      '&@Date &@Time',   ;Generates assembly date/time here.
  70.                       CR,LF,LF
  71.  
  72.     .DATA
  73.  
  74.  
  75.     .CODE
  76.  
  77. Skel PROC
  78.  
  79.     RET
  80.  
  81. Skel ENDP
  82.  
  83.     SUBTTL Utility (internal) routines.
  84.     PAGE
  85. ; ============================================================================
  86. ; Internal tools.
  87. ; ============================================================================
  88.  
  89.     .CODE
  90.  
  91.  
  92.     END
  93.