home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / target80.seq < prev    next >
Encoding:
Text File  |  1991-04-25  |  865 b   |  35 lines

  1. \ TARGET.SEQ              A New Target Compiler
  2.  
  3. FPATH+ \TCOM\SRC
  4.  
  5. autoeditoff
  6.  
  7. warning off             \ don't tell me about re-definitions, I KNOW!
  8.  
  9. fload label80.seq       \ add long branchs to the compiler
  10. fload compiler.seq      \ load the Compiler
  11. fload asm80.seq         \ the assembler for 8080 target
  12. fload opt80.seq         \ optimizers for the library
  13. fload lib80.seq         \ library of target functions
  14. fload init80.seq        \ default target initialization
  15.  
  16. forth
  17.  
  18. CFGHNDL !HCB TCOM80.CFG   \ Change the configuration file name
  19.  
  20. FPATH
  21.  
  22. on> ?noloaded,          \ disable LOADED, in FLOAD
  23.  
  24. ' noop is loadstat
  25. statoff                 \ no status display
  26. vocoff                  \ we don't want the vocabulary display
  27. cr .free
  28.  
  29. xdpseg @ xseg @ - $800 + =: #listsegs  \ need at least 16k free
  30.  
  31. warning on
  32.  
  33. FSAVE TCOM80
  34.  
  35.