home *** CD-ROM | disk | FTP | other *** search
- ;-> 'Make' file for SAsm DemoApp
-
- { !DemoApp is a 'dummy' application written to illustrate some
- of the features of SAsm. It doesn't actually do anything.
-
- This file sets the main parameters required by SAsm and then
- uses the INCLUDE directive to load the various source files
- in order. With such a small program there is really no need to
- split it up in this way but you might want to experiment by
- modifying and adding to the code. }
-
-
-
- ;first the important bits
-
- # type Absolute
- # size &4000
- # obj <SAsmProj$Dir>.^.!DemoApp.demoapp
-
- ; set names for various files in case they are needed
-
- # errfile <SAsmProj$Dir>.^.error
- # listfile <SAsmProj$Dir>.^.DemoList
- # xrfile <SAsmProj$Dir>.^.DemoXref
- # labelfile <SAsmProj$Dir>.^.DemoLabel
-
- # swion ;enable SWI name processing
-
- ; now the list of files to assemble
-
- # include <SAsmProj$Dir>.declare
- # include <SAsmProj$Dir>.macros
- # include <SAsmProj$Dir>.maincode
- # include <SAsmProj$Dir>.subs
- # include <SAsmProj$Dir>.data
-
-