home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / PC_HELP1.ZIP / HELPDOS3.ZIP / BASICA.### < prev    next >
Encoding:
Text File  |  1985-12-30  |  2.0 KB  |  35 lines

  1. COMMAND:  BASICA (Advanced Basic)
  2.  
  3. FUNCTION: Executes an interpretted BASIC program or initiates the BASIC
  4.           sub-system.
  5.  
  6. FORMAT:   BASICA [filespec] [/F:files][/S:bsize][/C:combuffer]
  7.                             [/M:[workspace][,blocksize]][/D]
  8.  
  9. TYPE:     DOS external command
  10.  
  11. REMARKS:  filespec specifies the program to be loaded and immediately run.
  12.           It may contain a path specification and it has the default extension
  13.           .BAS. If omitted, you are put into the BASIC program editor.
  14.           /F:files sets the maximum number of files that may be open at any one
  15.           time during BASIC program execution to files. The default is 3 and
  16.           the maximum is 15. The total number of open files is controlled by
  17.           the CONFIG.SYS command FILES=. BASIC uses 4 files by default.
  18.           /S:bsize sets the buffer size for use with random files to bsize
  19.           bytes. The default is 128 bytes and the maximum is 32767 bytes.
  20.           The record length parameter in an OPEN statement may not exceed this
  21.           value.
  22.           /C:combuffer sets the size of the buffer for receiving data through a
  23.           serial port to combuffer bytes. The default is 256 bytes and the
  24.           maximum is 32767 bytes. The buffer for transmitting data is always
  25.           128 bytes. /C:0 disables support for serial communications.
  26.           /M:workspace[,blocksize] sets the maximum number of bytes in the
  27.           BASIC workspace (up tp 64K bytes) and, optionally, allocates space
  28.           above the BASIC workspace in multiples of 16 byte paragraphs. The
  29.           default is 4096, for 65536 bytes of space for DATA and STACK
  30.           segments.
  31.           /D turns on double precision for transcendental functions.
  32.           In addition, input and output from BASIC can be diverted using the
  33.           DOS redirection features. If filespec is omitted, you may exit from
  34.           the BASIC program editor by entering SYSTEM and pressing Enter.
  35.