home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FORTH / FIG_4TH.ZIP / 4THUG.TOC < prev    next >
Encoding:
Text File  |  1987-01-16  |  4.5 KB  |  81 lines

  1.  
  2.  
  3.  
  4.                                                               Page    i
  5.  
  6.                                Table of Contents
  7.  
  8.  
  9.            1  QUICK REFERENCE. . . . . . . . . . . . . . . . . . .    2
  10.             1.1  System Requirements . . . . . . . . . . . . . . .    2
  11.             1.2  Invocation. . . . . . . . . . . . . . . . . . . .    2
  12.             1.3  Provided Documentation. . . . . . . . . . . . . .    3
  13.            2  INTRODUCTION . . . . . . . . . . . . . . . . . . . .    4
  14.            3  USER'S GUIDE . . . . . . . . . . . . . . . . . . . .    6
  15.             3.1  System Requirements . . . . . . . . . . . . . . .    6
  16.             3.2  FORTH, Calculator Style . . . . . . . . . . . . .    7
  17.              3.2.1  Getting Started. . . . . . . . . . . . . . . .    7
  18.              3.2.2  Communicating With FORTH . . . . . . . . . . .    7
  19.              3.2.3  Special Functions. . . . . . . . . . . . . . .    8
  20.              3.2.4  New Definitions. . . . . . . . . . . . . . . .    8
  21.              3.2.5  Exiting FORTH. . . . . . . . . . . . . . . . .    9
  22.             3.3  Using the Disk. . . . . . . . . . . . . . . . . .   10
  23.              3.3.1  Creating and editing Definitions . . . . . . .   10
  24.              3.3.2  FORTH Disk Access. . . . . . . . . . . . . . .   10
  25.              3.3.3  Screen File Access . . . . . . . . . . . . . .   11
  26.              3.3.4  Compiling Definitions. . . . . . . . . . . . .   13
  27.              3.3.5  Other Functions. . . . . . . . . . . . . . . .   14
  28.               3.3.5.1  changing the default drive. . . . . . . . .   14
  29.               3.3.5.2  directory information . . . . . . . . . . .   14
  30.               3.3.5.3  erasing files . . . . . . . . . . . . . . .   14
  31.               3.3.5.4  screen transfer . . . . . . . . . . . . . .   15
  32.               3.3.5.5  screen file status. . . . . . . . . . . . .   15
  33.              3.3.6  Notes. . . . . . . . . . . . . . . . . . . . .   17
  34.             3.4  Modifying FORTH . . . . . . . . . . . . . . . . .   17
  35.              3.4.1  FORTH Extensions . . . . . . . . . . . . . . .   18
  36.              3.4.2  Patching . . . . . . . . . . . . . . . . . . .   18
  37.              3.4.3  Assembly Source Modifications. . . . . . . . .   19
  38.            4  TECHNICAL REFERENCE. . . . . . . . . . . . . . . . .   20
  39.             4.1  Assembly Source . . . . . . . . . . . . . . . . .   20
  40.              4.1.1  Source File Organization . . . . . . . . . . .   20
  41.              4.1.2  Macros . . . . . . . . . . . . . . . . . . . .   21
  42.              4.1.3  Comments . . . . . . . . . . . . . . . . . . .   21
  43.             4.2  Modifications . . . . . . . . . . . . . . . . . .   22
  44.              4.2.1  Boot Parameters. . . . . . . . . . . . . . . .   22
  45.              4.2.2  Machine Code Definitions . . . . . . . . . . .   22
  46.              4.2.3  High-level Utility Definitions . . . . . . . .   22
  47.              4.2.4  Installation Dependent Code. . . . . . . . . .   23
  48.               4.2.4.1  console i/o . . . . . . . . . . . . . . . .   23
  49.               4.2.4.2  printer i/o . . . . . . . . . . . . . . . .   23
  50.               4.2.4.3  disk i/o. . . . . . . . . . . . . . . . . .   23
  51.              4.2.5  High-level Definitions . . . . . . . . . . . .   24
  52.              4.2.6  System Tools . . . . . . . . . . . . . . . . .   24
  53.              4.2.7  RAM Workspace. . . . . . . . . . . . . . . . .   24
  54.              4.2.8  Memory Map . . . . . . . . . . . . . . . . . .   24
  55.              4.2.9  Other. . . . . . . . . . . . . . . . . . . . .   24
  56.             4.3  Additions . . . . . . . . . . . . . . . . . . . .   25
  57.              4.3.1  Command Line Interpretation. . . . . . . . . .   25
  58.              4.3.2  File Interface . . . . . . . . . . . . . . . .   25
  59.            5  GLOSSARY . . . . . . . . . . . . . . . . . . . . . .   27
  60.             5.1  Assembly Listing Definitions. . . . . . . . . . .   28
  61.  
  62.  
  63.  
  64.                                                               Page   ii
  65.  
  66.                                Table of Contents
  67.  
  68.  
  69.             5.2  Deleted Definitions . . . . . . . . . . . . . . .   35
  70.             5.3  High-level Extensions . . . . . . . . . . . . . .   36
  71.            6  Future Extensions. . . . . . . . . . . . . . . . . .   38
  72.            7  FORTH sources. . . . . . . . . . . . . . . . . . . .   39
  73.  
  74.           Appendix A - Using execution vectors . . . . . . . . . .   40
  75.  
  76.             A.1  Concepts. . . . . . . . . . . . . . . . . . . . .   40
  77.             A.2  An example. . . . . . . . . . . . . . . . . . . .   41
  78.  
  79.           Appendix B - Building FORTH.COM. . . . . . . . . . . . .   42
  80.  
  81.