home *** CD-ROM | disk | FTP | other *** search
- \ TARGET.SEQ A New Target Compiler
-
- FPATH+ \TCOM\SRC
-
- autoeditoff
-
- warning off \ don't tell me about re-definitions, I KNOW!
-
- fload label80.seq \ add long branchs to the compiler
- fload compiler.seq \ load the Compiler
- fload asm80.seq \ the assembler for 8080 target
- fload opt80.seq \ optimizers for the library
- fload lib80.seq \ library of target functions
- fload init80.seq \ default target initialization
-
- forth
-
- CFGHNDL !HCB TCOM80.CFG \ Change the configuration file name
-
- FPATH
-
- on> ?noloaded, \ disable LOADED, in FLOAD
-
- ' noop is loadstat
- statoff \ no status display
- vocoff \ we don't want the vocabulary display
- cr .free
-
- xdpseg @ xseg @ - $800 + =: #listsegs \ need at least 16k free
-
- warning on
-
- FSAVE TCOM80
-
-