home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / MISC / FPC355_5.ZIP / TCOM96.ZIP / TCOM96 / COMPILER / TARGET96.SEQ < prev    next >
Encoding:
Text File  |  1991-04-11  |  2.0 KB  |  52 lines

  1. \ TARGET.SEQ              A New Target Compiler
  2.  
  3. fpath+ \tcom\src               \ path for source of kernel of TCOM compiler
  4. fpath+ \tcomtarg\compiler      \ path for source of shared remote-target stuff
  5. on> withpath
  6. autoeditoff
  7. warning off             \ don't tell me about re-definitions, I KNOW!
  8.  
  9. \ fload dis8096.seq       \ disassembler for 80196
  10. fload label96.seq      \ add long branchs to the compiler
  11. \ fload alist.seq         \ listing output for assembler
  12. fload compiler.seq      \ load the Compiler
  13. fload lindex            \ source index stuff
  14. fload hexsave.seq       \ save images in HEX format
  15. fload asm96.seq         \ assembler for 80196
  16. fload opt96.seq       \ optimizers for the library
  17. fload lib96.seq       \ library of target functions
  18. \ fload definit.seq
  19. \ fload tsearch.seq       \ library search utility
  20. \ fload tvideo.seq        \ library direct video output
  21. \ fload tsavescr.seq      \ save and restore screen               OPTIONAL
  22. \ fload tcolor.seq        \ color support                         OPTIONAL
  23. \ fload therc.seq         \ hercules graphics support             OPTIONAL
  24. \ fload tgraph.seq        \ limited graphics line drawing         OPTIONAL
  25. \ fload tshapes.seq       \ circle and arc drawing                OPTIONAL
  26. \ fload definit.seq       \ default target initialization
  27. \ fload tbox.seq          \ box drawing                           OPTIONAL
  28. \ fload tmenu.seq         \ Pull down menu support                OPTIONAL
  29. \ fload ttimer.seq        \ basic time and date support           OPTIONAL
  30. \ fload ttimstuf.seq      \ calibrated time delay words           OPTIONAL
  31.  
  32. forth
  33.  
  34. CFGHNDL !HCB TCOM.CFG   \ Change the configuration file name
  35.  
  36. FPATH
  37.  
  38. on> ?noloaded,          \ disable LOADED, in FLOAD
  39.  
  40. ' noop is loadstat
  41. statoff                 \ no status display
  42. vocoff                  \ we don't want the vocabulary display
  43. cr .free
  44.  
  45. xdpseg @ xseg @ - $800 + =: #listsegs  \ need at least 16k free
  46.  
  47. warning on
  48.  
  49. FSAVE TCOM
  50.  
  51.  
  52.