home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / FFB.ZIP / FFUTILS.ARC / ZIMMER.ARC / SFF.SEQ < prev    next >
Encoding:
Text File  |  1987-12-27  |  2.1 KB  |  46 lines

  1. \ SFF.SEQ       Extend file to build SFF.COM            by Tom Zimmer
  2.  
  3. WARNING OFF                     \ Don't warn me about any re-definitions.
  4.  
  5. CR .( Loading the extensions to FKERNEL.COM )
  6.  
  7. FLOAD COMMENT.SEQ  .( .)        \ Allows multi-line comments in source.
  8. FLOAD TIMER.SEQ    .( .)        \ Some time measurment utilities.
  9. FLOAD UTILS.SEQ    .( .)        \ Some low level utilities.
  10. FLOAD VOCABS.SEQ   .( .)        \ Forths ONLY ALSO vocabulary structure.
  11. FLOAD DECOM.SEQ    .( .)        \ decompiler,                  may be removed
  12. FLOAD DUMP.SEQ     .( .)        \ dump utility,                may be removed
  13. FLOAD CASE.SEQ     .( .)        \ CASE utility, needed for PASM.SEQ
  14. FLOAD PASM.SEQ     .( .)        \ Assembler
  15. FLOAD DEBUG.SEQ    .( .)        \ high level debugger,         may be removed
  16. \ FLOAD IBMCURSR.SEQ .( .)        \ IBM cursor shape control words
  17. \ FLOAD SAVESCR.SEQ  .( .)        \ Screen save and restore.
  18. \ FLOAD MONOCROM.SEQ .( .)        \ Monochrome support, always needed.
  19. \ FLOAD PATHSET.SEQ  .( .)        \ Includes paths on files,     may be removed
  20. \ FLOAD MULTASK.SEQ  .( .)      \ Multi tasking,               load if needed
  21. \ FLOAD COLOR.SEQ    .( .)      \ Better support for Color,    load lf needed
  22.  
  23. WARNING ON CAPS ON
  24.  
  25.                                 \ HELLO needs MONOCROM above
  26. \ fload hello.seq   .( .)         \ Cold start initialization & introduction.
  27. \ fload qvideo.seq  .( .)         \ SPEED UP SCREEN REDISPLAY FOR EDITOR
  28.  
  29.                                 \ FL needs IBMCURSR & SAVESCR above
  30. \ fload fl.seq      .( .)         \ WINDOWed File selection.
  31.                                 \ VIEW needs MONOCROM & PATHSET above
  32. \ fload view.seq    .( .)         \ Viewing words
  33.  
  34. FLOAD SAVESYS.SEQ  .( .)        \ Load the SAVE-SYSTEM word
  35.                                 \ see the word TURNKEY in this file.
  36. SAVE-SYSTEM SFF.COM             \ Save Small DF
  37.  
  38. .comment:
  39.   Type FLOAD <filename>, where <filename> is the name of your application
  40. file.
  41.  
  42.   After you have compiled uour application, use the TURNKEY command
  43. to create an executable application.
  44. comment;
  45.  
  46.