home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / SIMTEL / CPMUG / CPMUG031.ARK / TBASIC.1 < prev    next >
Text File  |  1984-04-29  |  2KB  |  66 lines

  1.         TARBELL CASSETTE BASIC
  2.  
  3. Written by Tom Dilatush of REAL TIME MICROSYSTEMS, 2240 Main St.
  4. No. 18, Chula Vista, CA 92011 for Don Tarbell of TARBELL ELECTRONICS,
  5. 950 Dovlen Place, Suite B, Carson, CA 90746.
  6.  
  7. This manual describes TARBELL BASIC in such a way as to be
  8. understood by those having previous experience with other BASIC's.
  9. It is not intended as a tutorial, as there are several good 
  10. BASIC texts (see Appendix K).  Where reasonable it is
  11. upward compatible from ALTAIR* 8800 BASIC release 4.0 8k version.
  12. Items which differ significantly from that version are marked
  13. with an asterisk.  Items enclosed in angles (<item>) are defined
  14. in Appendix B.  Items enclosed in brackets ([item]) are optional.
  15.  
  16. Control Characters are rubout to delete a character, Ctl-U to
  17. delete the line being entered, Ctl-C to stop the program or listing,
  18. carriage-return for end of entry, Ctl-I to tab 8 spaces, and
  19. Ctl-S to cause the program or printing to stop temporarily.
  20.  
  21. Modes of Operation:
  22.  
  23.     Direct Mode:
  24.     Most TARBELL BASIC statements may be entered and executed while
  25.     in command level.  This statement may be only one line, but
  26.     may be any length up to the limits of memory.  Statements which
  27.     would modify allocated memory, such as DIM & LET, are not allowed
  28.     in direct mode entries.  Statement names are not allowed.
  29.     Multiple statements per line may be seperated by colons (:).
  30.  
  31.     Entry Mode:
  32.     This mode is entered by typing "ENTER" or ":", and is
  33.     used for creating lines of program text from the keyboard.
  34.     it is also used for inserting lines.  See ENTER command.
  35.  
  36.     Edit Mode:
  37.     This mode is entered by typing "EDIT" and a line descriptor.
  38.     It is used for making changes to existing lines without
  39.     having to retype the whole line.  See EDIT command.
  40.  
  41.     Run Mode:
  42.     This is the normal, programmed mode.  The stored TARBELL
  43.     BASIC program begins executing when a "RUN" command is entered.
  44.  
  45. To acquire a better feel for the modes of operation, and for using
  46. TARBELL BASIC in general, see the sample run in Appendix F.
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54. * ALTAIR is a trademark/tradename of MITS, Inc.
  55.  
  56.  
  57.  
  58.  
  59.                 1
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.