home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / target.seq < prev    next >
Text File  |  1991-04-23  |  2KB  |  57 lines

  1. \ TARGET.SEQ              A New Target Compiler
  2.  
  3. autoeditoff
  4.  
  5. warning off             \ don't tell me about re-definitions, I KNOW!
  6.  
  7. fload dis8086.seq       \ disassembler for 8086 family
  8. fload longlabl.seq      \ add long branchs to the compiler
  9. fload compiler.seq      \ load the Compiler
  10. fload alist.seq         \ listing output for assembler
  11. fload optimiz.seq       \ optimizers for the library
  12. fload library.seq       \ library of target functions
  13. fload tsearch.seq       \ library search utility
  14. fload tvideo.seq        \ library direct video output
  15. fload tsavescr.seq      \ save and restore screen               OPTIONAL
  16. fload tcolor.seq        \ color support                         OPTIONAL
  17. fload thand1.seq        \ some handle primitives
  18. fload tpath.seq         \ automatic file path prepend
  19. fload thandles.seq      \ handle file support
  20. fload tstdio.seq        \ standard I/O support
  21. fload texec.seq         \ DOS shell support
  22. fload tenviron.seq      \ environment support
  23. fload definit.seq       \ default target initialization
  24. fload tbox.seq          \ box drawing                           OPTIONAL
  25. fload tmenu.seq         \ Pull down menu support                OPTIONAL
  26. fload tblock.seq        \ simple virtual BLOCK storage          OPTIONAL
  27. fload tledit.seq        \ line editor support                   OPTIONAL
  28. fload twfl.seq          \ popup window file selection tool
  29. fload ttimer.seq        \ basic time and date support           OPTIONAL
  30. fload ttimstuf.seq      \ calibrated time delay words           OPTIONAL
  31. fload tsread.seq        \ lineread support                      OPTIONAL
  32.  
  33. forth
  34.  
  35. CFGHNDL !HCB TCOM.CFG   \ Change the configuration file name
  36.  
  37. FPATH
  38.  
  39. on> ?noloaded,          \ disable LOADED, in FLOAD
  40.  
  41. ' noop is loadstat
  42. statoff                 \ no status display
  43. vocoff                  \ we don't want the vocabulary display
  44. cr .free
  45.  
  46. xdpseg @ xseg @ - $800 + =: #listsegs   \ need at least 16k free
  47.                        0 =: #ovbytes    \ no overlays for now
  48.                        0 =: #ovsegs     \ no overlays for now "again"
  49.  
  50. warning on
  51.  
  52. off> \fpc
  53. on> \tcom
  54.  
  55. FSAVE ..\TCOM
  56.  
  57.