home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine 1995 / ARCHIVE95.iso / discs / shareware / share_46 / sasm / Demo / DemoMake < prev    next >
Text File  |  1994-03-22  |  915b  |  37 lines

  1. ;-> 'Make' file for SAsm DemoApp
  2.  
  3. { !DemoApp is a 'dummy' application written to illustrate some
  4.   of the features of SAsm. It doesn't actually do anything. 
  5.   
  6.   This file sets the main parameters required by SAsm and then
  7.   uses the INCLUDE directive to load the various source files
  8.   in order. With such a small program there is really no need to
  9.   split it up in this way but you might want to experiment by
  10.   modifying and adding to the code.  }
  11.  
  12.  
  13.  
  14.         ;first the important bits 
  15.  
  16. # type  Absolute
  17. # size  &4000
  18. # obj   !DemoApp.demoapp
  19.  
  20.         ; set names for various files in case they are needed
  21.  
  22. # errfile       error
  23. # listfile      DemoList
  24. # xrfile        DemoXref
  25. # labelfile     DemoLabel
  26.  
  27. # swion         ;enable SWI name processing
  28.  
  29.         ; now the list of files to assemble
  30.  
  31. # include       declare
  32. # include       macros
  33. # include       maincode
  34. # include       subs
  35. # include       data
  36.  
  37.