home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / startup_asm35 / sample_header.s < prev    next >
Text File  |  1977-12-31  |  1KB  |  50 lines

  1. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  2. *
  3. *   Name
  4. *    Sample header 1.2
  5. *
  6. *   Synopsis
  7. *    
  8. *   Function
  9. *    
  10. *   Inputs
  11. *    
  12. *   Result
  13. *    
  14. *   Notes
  15. *    
  16. *   Bugs
  17. *    
  18. *   Created    : 4.9.95
  19. *   Last change    : 7.12.95
  20. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  21.  
  22. *## For the Startup.asm:
  23.  
  24. StartSkip    =    1        ;0=WB/CLI, 1=CLI only (from AsmOne)
  25. Processor    =    0        ;0/680x0/0x0/x0
  26. MathProc    =    0        ;0/68881/68882/68040/68060
  27.  
  28. *## Default includes:
  29.  
  30.     Incdir    inc:
  31.     Include    Startup.asm
  32.  
  33.     dc.b    "$VER: name v.r (date) "
  34.     dc.b    "Copyright © 1995 by MyName. All rights reserved. "
  35.  
  36. ;delete lines which doesn't fit:
  37.  
  38.     dc.b    "This program is freeware.",0
  39.     dc.b    "This program is shareware.",0
  40.     dc.b    "This program is private!",0
  41.     dc.b    "This program is commercial.",0
  42.     even
  43. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  44. Init    TaskName    "MyTask"
  45.     DefEnd
  46.  
  47. Start
  48. *·············································································*
  49. Close    Return    0
  50.