home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / autoload.seq < prev    next >
Text File  |  1988-11-07  |  527b  |  18 lines

  1. \ AUTOLOAD.SEQ    Automatically load from F-PC.CFG      by Tom Zimmer
  2.  
  3. comment:
  4.  
  5.         If you load this file and re-save the system, F-PC will
  6.         automatically try to load the file F-PC.CFG each time F-PC starts
  7.         up.  You can put some of your configuration stuff in that file,
  8.         and it will take effect at each boot time.
  9.  
  10. coment;
  11.  
  12. : autoload      ( --- )
  13.                 " F-PC.CFG" ">$ $fload drop     \ we don't care if it exists
  14.                 defers default ;
  15.  
  16. ' autoload is default
  17.  
  18.