home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / portfoli / pbas41.lzh / pbasic.txt < prev    next >
Text File  |  1991-02-18  |  52KB  |  1,734 lines

  1. Portfolio BASIC, version 4.1  (c) 1991 BJ Gleason
  2.  
  3. by BJ Gleason,  The American University
  4.  
  5.  
  6. INTRODUCTION
  7.  
  8.      PBASIC is a simple BASIC interpreter.  It only requires 38k
  9.      of disk space and about 59k of memory to run.  PBASIC is a
  10.      batch oriented interpreter.  It will also interact with the
  11.      built-in editor for program development.
  12.  
  13.      PBASIC was one of the winners in the Compuserve/Portfolio
  14.      Conference Programming Contest, 1990.
  15.  
  16.  
  17. A NOTE FROM THE AUTHOR
  18.  
  19.      A number of considerate users have offered their help.  If
  20.      you have an interesting application that you have developed
  21.      in PBASIC, I will be more than happy to distribute your code
  22.      in future releases.  Please make sure to place your name and
  23.      other information as REMarks in the program.  You can
  24.      include a documentation file as well.  The only thing that I
  25.      ask is that you do not charge for the use of your program,
  26.      as I am not charging for the use of this interpreter.  Send
  27.      me a note, and tell me where the code is and I will include
  28.      it in the package.
  29.  
  30.      Thanks to all you have helped and are going to help!
  31.  
  32.      Now that files and such have been added, I am going to take
  33.      a bit of a break.  I will release upgrades as bugs dictate,
  34.      and will, as always, listen to you, the user.  But quite
  35.      frankly, except for a few minor functions, I don't think
  36.      there is much else to add.  PBASIC has grown about as large
  37.      as I would like it to. If it grows any larger, there will be
  38.      little room left for your code.
  39.  
  40.  
  41. MANUAL AVAILABLE
  42.  
  43.      A 240+ page manual on PBASIC is under works and will be
  44.      available March 1, 1991.  The manual is 8.5 x 11, and has
  45.      comb binding so it can lay flat.  Each instruction is
  46.      explained in detail, with examples.  The manual will cost 25
  47.      dollars, including postage.  If you are interested in
  48.      obtaining the manual, send a check or money order to address
  49.      on the last page of this document.
  50.  
  51.      I am sorry that the manual was delayed, but there were a few
  52.      minor setbacks.
  53.  
  54. WHAT THE CRITICS SAY:
  55.  
  56.      PBASIC 2.1 was reviewed by John Jainschigg in Atari
  57.      Explorer, January 1991.  Here is some of he said:
  58.  
  59.      "...PBASIC is a terrific little job of programming... Though
  60.      freeware, PBASIC has been professionally and completely
  61.      documented... even those who are waiting on tenterhooks for
  62.      Atari's own Portfolio BASIC may find PBASIC very useful in
  63.      the interim.  The program is reasonably reliable, complete,
  64.      and professionally executed - and at the present time,
  65.      stands as the best alternative for casual programming on the
  66.      Portfolio system."
  67.  
  68.  
  69. DESIGN CONSIDERATION
  70.  
  71.      When I was laying out the initial design of PBASIC, here are
  72.      some of the topics I took into consideration:
  73.  
  74.           - Microsoft BASIC compatible.
  75.           - Size of Interpreter (as small as possible).
  76.           - Unique features of the Portfolio.
  77.           - Using the Built-in editor for Program Editing.
  78.           - Reasonable size BASIC programs.
  79.  
  80.  
  81. NEW FEATURES FOR VERSION 4.1
  82.  
  83.      This release is mostly bug fixes.  Two new features are the
  84.           PRINT@location, which is compatible with the Model 100. 
  85.           This will make conversions easier.  Also, the LOCATE
  86.           command now has an option to turn the cursor on and
  87.           off.
  88.  
  89.  
  90. INTERFACING WITH THE EDITOR
  91.  
  92.      Instead of trying to create an editor, PBASIC makes full use
  93.      of the built in editor.
  94.  
  95.      If you run BASIC without any parameters, it will load the
  96.      last file you used in the editor.  To speed up the process,
  97.      you might want to rename PBASIC.EXE to P.EXE, so you only
  98.      need to type P<RETURN> at the prompt.  You can also specify
  99.      a file to execute on the command line.
  100.  
  101.      Whenever an error is detected, an error message is
  102.      displayed, along with the line number.  Press any key and
  103.      PBASIC will invoke the built-in editor and point to the
  104.      error position.  This will only happen if the file you are
  105.      executing is the same as the one you are editing.  On other
  106.      systems, you will be returned to the DOS prompt.
  107.  
  108.      On a PC compatible machine, the error message will include
  109.      the line number, character position and offset from the
  110.      front of the file.  This is so that the PBASIC EDITOR, for
  111.      the PC, can determine where the error is and point to it.
  112.  
  113.      ALTR.COM is a small TSR program that will, only from inside
  114.      the editor, save the current file and invoke PBASIC. 
  115.      PBASIC.EXE should be rename P.EXE for the <ALT-R> command to
  116.      work.  ALTR takes up about 450 bytes.  It can be removed by
  117.      rebooting the machine.  It can only be loaded into memory
  118.      once.  The <ALT-R> command will only work inside the editor.
  119.  
  120.      When the program is finished, PBASIC will wait for a
  121.      keypress and then return you to the editor.
  122.  
  123.  
  124. RUNNING PBASIC
  125.  
  126.           There are two forms to execute PBASIC:
  127.  
  128.                PBASIC [-T]
  129.  
  130.                PBASIC filename.ext [-T]
  131.  
  132.      In the first form, the default file is the last one edited
  133.      in the built-in editor on the Portfolio.  The second form
  134.      loads and executes the specified file.  If you leave off the
  135.      extension, the default ".BAS" is added.
  136.  
  137.      If you have run the ALTR program before editing your code,
  138.      you can execute PBASIC by pressing <ALT-R>.
  139.  
  140.      The command line switch -T will turn on the trace feature. 
  141.      This is the same as putting TRON at the beginning of you
  142.      program.
  143.  
  144.  
  145. GENERAL
  146.  
  147.      Source code is standard ASCII format.
  148.  
  149.      Source code can be in upper or lower case.
  150.  
  151.      200 floating point variables.  Variable names can not exceed
  152.      8 characters in length.
  153.  
  154.      Strings are always allocated 256 bytes.
  155.  
  156.      FOR/NEXT loops may be nested 10 deep.
  157.      GOSUBs may be nested 10 deep.
  158.  
  159.      WHILE / WEND may be nested 10 deep.
  160.  
  161.      REPEAT / UNTIL may be nested 10 deep.
  162.  
  163.      Line numbers are not required for each statement.  Only 100
  164.      line numbers are allowed.  They do not have to be in
  165.      sequence.  Line numbers can range from 0 to 99999.
  166.  
  167.      Multiple statements per line (:) is supported.
  168.  
  169.      Up to 10 Files can be open at the same time.
  170.  
  171.  
  172. DEVELOPING PROGRAMS WITH GWBASIC
  173.  
  174.      You can develop your programs on the PC with Microsoft BASIC
  175.      or QuickBASIC.  If using Microsoft BASIC, be sure to save
  176.      the file in ASCII format [ SAVE "myfile",A ] so that it can
  177.      be read by PBASIC.  
  178.  
  179.      For easier development on a PC, PBE, the PBASIC Editor is
  180.      now available.  PBE operates similar to Turbo Pascal, and
  181.      allows you to execute programs from inside the editor.  IT
  182.      will also let you transfer files back and forth to the
  183.      Portfolio.
  184.  
  185.  
  186. MATH EXPRESSIONS
  187.  
  188.           Single precision math.  Parentheses supported. 
  189.      Standard operator evaluation.  Hexadecimal and Octal
  190.      constants are supported.
  191.  
  192.           - negation
  193.           ^ exponent
  194.           * multiply
  195.           / divide
  196.           % remainder (MOD)
  197.           \ integer division
  198.           + addition
  199.           - subtraction
  200.           AND, OR, NOT, XOR, EQV, IMP
  201.           <, >, <=, >=, =, <>
  202.      
  203.  
  204. NOTES ON CONVENTIONS USED
  205.  
  206.      An expression (exp) can contain variables, constants.  When
  207.      a dummy exp is indicated, it is suggested that you use a
  208.      constant, i.e. POS(0).
  209.      A variable name (varname) must be used when indicated.
  210.  
  211.      Unless otherwise noted, all parameters can be constants,
  212.      variables or equations.
  213.  
  214.      
  215. BASIC STATEMENTS
  216.  
  217.           I have tried to keep the syntax and semantics for the
  218.      statements as close to Microsoft BASIC as possible.  The
  219.      notes presented indicate exceptions.  There are some
  220.      statements included that are not from Microsoft.  They will
  221.      not run on GWBASIC.
  222.  
  223.  
  224.      BLOAD     filename, offset
  225.  
  226.                Load a file to location SEG:offset.
  227.  
  228.  
  229.      BSAVE     filename, offset, length
  230.  
  231.                Copies memory to file, starting from SEG:offset
  232.                for length bytes.
  233.  
  234.  
  235.  
  236.      CALL      address
  237.  
  238.                Transfer control to SEG:address.  Data is passed
  239.                via the registers with the REG statement/function.
  240.  
  241.  
  242.      CALL INTERRUPT intno
  243.  
  244.                Invoke DOS interrupt intno.  Data is passed via
  245.                the registers with the REG statement/function.
  246.  
  247.  
  248.      CHAIN     filename
  249.  
  250.                Load and execute the indicated file.  All
  251.                variables are retained.
  252.  
  253.  
  254.      CHDIR     path
  255.  
  256.                Change the current directory to path.
  257.  
  258.  
  259.      CLOSE#    fileno
  260.  
  261.                Close the file.
  262.  
  263.  
  264.      CLS
  265.  
  266.                Clears the screen.
  267.  
  268.  
  269.      DATA      list of numbers/strings
  270.  
  271.                Allows for numbers to be stored inline.  Data
  272.                statements MUST have a line number.  Numbers are
  273.                separated by commas.  Data statements may be
  274.                located on any line of the program.  Strings must
  275.                be enclosed in quotes.
  276.  
  277.                     12 DATA 1,2,3,4,5,6
  278.  
  279.  
  280.      DECR(var)
  281.  
  282.                Decrement the variable by 1.
  283.  
  284.  
  285.      DEF SEG   = exp
  286.  
  287.                Assigns a segment address for direct memory
  288.                accessing via PEEK, POKE and CALL.
  289.  
  290.  
  291.      DIM       varname(size,[size])[,varname(size,[size])....]
  292.  
  293.                Creates a one or two dimensional array of single
  294.                precision floating point variables.  Arrays start
  295.                at 0.  Arrays are not initialized to a value. 
  296.                Arrays must be defined before they are used. 
  297.                Upper array bounds are not checked, arrays are not
  298.                allowed to go below 0.
  299.  
  300.  
  301.      END
  302.  
  303.                SYSTEM and END have the same effect.
  304.  
  305.  
  306.      ERROR     errnum
  307.  
  308.                Simulate Error for testing ON ERROR GOTO.
  309.  
  310.  
  311.      EVAL      var$
  312.  
  313.                Evaluates the contents of var$ as if it was part
  314.                of a BASIC program.
  315.  
  316.  
  317.      FOR       varname = exp TO exp [STEP exp]
  318.  
  319.  
  320.      FORMFEED
  321.  
  322.                Send a formfeed to the printer.
  323.  
  324.  
  325.      GOSUB     line number
  326.  
  327.  
  328.      GOTO      line number
  329.  
  330.  
  331.      IF        exp THEN statement [ ELSE statement ]
  332.  
  333.  
  334.      INCR(var)
  335.  
  336.                Increment var by 1.
  337.  
  338.  
  339.      INPUT     ["prompt" (,|;)] varname
  340.  
  341.                Reads input from the keyboard.  Only one variable
  342.                is allowed per input.  If a comma (,) separates
  343.                the prompt string and the varname, no question
  344.                mark (?) will be printed.  If a semi-colon (;) is
  345.                used, the question mark will appear. 
  346.  
  347.      INPUT#    fileno, varname
  348.  
  349.                This will read a variable from a disk file.
  350.  
  351.  
  352.      KILL      filename
  353.  
  354.                Delete filename from disk.
  355.  
  356.  
  357.      LOCATE    row,col[,cursor]
  358.  
  359.                Move the cursor to row, col.  The optional
  360.                parameter cursor can be used to turn the cursor on
  361.                or off.  On the Portfolio: 0=off, 1=underline,
  362.                2=block.  On the PC: 0=off, 1=block, 2=block.
  363.  
  364.  
  365.      LPRINT    list of expressions
  366.  
  367.                Send output to printer.  See PRINT.
  368.  
  369.  
  370.      MKDIR     path
  371.  
  372.                Create a directory named path.
  373.  
  374.  
  375.      NEXT      [varname]
  376.  
  377.                If no variable name is given, last FOR statement
  378.                is used.  If variable name is given, matching FOR
  379.                is searched for and used, if found.  This process
  380.                allows for exiting early from inner loops.
  381.  
  382.  
  383.      NUMFMT    = "format"
  384.  
  385.                In PBASIC numbers are not displayed in classic
  386.                GWBASIC format.  GWBASIC always prints numbers
  387.                with a leading space or -, and a trailing space. 
  388.                To make the porting of GWBASIC programs easier,
  389.                you can specify the format that numbers are to
  390.                print with the NUMFMT statement.  The default is
  391.                "%g", and GWBASIC format would be "% g ".  This
  392.                can also be used if you want all numbers in
  393.                scientific or other format.  See the PRINT USING
  394.                description for the format.
  395.  
  396.  
  397.      ON ERROR GOTO line number
  398.  
  399.                Error trapping.  When an error occurs, user will
  400.                be transferred to line number.  A line number of 0
  401.                will disable error trapping.
  402.  
  403.  
  404.      ON        exp  GOTO  list of line numbers
  405.  
  406.  
  407.      ON        exp  GOSUB list of line numbers
  408.  
  409.  
  410.      OPEN      "mode",fileno,filename
  411.  
  412.                Open a file.  Mode can be:
  413.  
  414.                     I    Input
  415.                     O    Output
  416.                     A    Append
  417.                Fileno can be between 1 and 10.  Only ten files
  418.                may be open at any one time.  Filename is any
  419.                standard MS/DOS filename.
  420.  
  421.  
  422.      OUT       port, exp
  423.  
  424.                Send value to the indicated port.
  425.  
  426.  
  427.      PGLOAD    filename
  428.  
  429.                Load a .PGC file into screen memory.
  430.  
  431.  
  432.      PGSAVE    filename
  433.  
  434.                Save video memory to .PGC file.
  435.  
  436.  
  437.      PGSHOW    filename, delay
  438.  
  439.                Display a .PGC file, and wait delay seconds.  If
  440.                delay is 0, wait for keypress.
  441.  
  442.                
  443.      POKE      addr, exp
  444.  
  445.                Places value at SEG:addr.  SEG is set via the DEF
  446.                SEG statement.  NOTE: Due to the design of the
  447.                Portfolio, if you poke screen memory (DEF
  448.                SEG=&HB000), the value may not appear.  After you
  449.                poke, you should use the REFRESH statement to
  450.                update the screen.
  451.  
  452.  
  453.      PRINT[@l,] list of expressions
  454.  
  455.                List of expressions can consist of strings,
  456.                variables, constants or expressions, separated by
  457.                the comma (,) or semi-colon (;) or a space ( ). 
  458.                Starting with version 4.0, the ? can be used as an
  459.                abbreviation for PRINT.  @l indicate screen
  460.                position 0-319, 40 columns by 8 rows.  For Model
  461.                100 compatibility.
  462.  
  463.  
  464.      PRINT#    fileno, list of expressions
  465.  
  466.                Same as PRINT, but send output to file.
  467.  
  468.  
  469.      PRINT[@l,] USING format; list of variables
  470.  
  471.                This is not GWBASIC compatible.  To implement the
  472.                full version of the PRINT USING would take up too
  473.                much room.  This version is like C's printf. 
  474.                Format is a string, indicating the format to print
  475.                a single variable.  Each variable in the list is
  476.                printed with that format.  For more details, refer
  477.                to Turbo C's reference manual.  @l indicate screen
  478.                position 0-319, 40 columns by 8 rows.  For Model
  479.                100 compatibility.
  480.  
  481.                Format Specifiers:
  482.  
  483.                     %s        String
  484.                     %f        Real [-]dddd.dddd
  485.                     %e        Real [-]d.ddde[+/-]ddd
  486.                     %E        Real [-]d.dddE[+/-]ddd
  487.                     %g        Real, general format, e or f
  488.                     %G        Real, general format, E or f
  489.                     %%        Print % character in format string
  490.                     % g       Print numbers in GWBASIC format
  491.                     
  492.                Widths/Precisions:
  493.  
  494.                     n         n characters are printed
  495.                     0n        n characters with leading 0's
  496.                     .0        no decimal point
  497.                     .n        n digits after the decimal point
  498.  
  499.                Examples                      Output
  500.      
  501.                     "|%10.2f|";123.123       |    123.12|
  502.                     "|%10.0f|";123.123       |       123|
  503.                     "|%5.0f%%|";10;15        |   10%||   15%|
  504.                     "|%010.2f|";123.456      |0000123.46|
  505.                     "|%e|";456.789           |4.56789e+02|
  506.                     "|%E|";567.901           |5.67901E+02|
  507.  
  508.  
  509.      PRINT#    fileno, USING format; list of variables
  510.  
  511.                Same as PRINT USING, but send output to file.
  512.  
  513.  
  514.  
  515.      PRINTER   
  516.  
  517.                This is a toggle to start copying all PRINT
  518.                statements to the printer.  Issue it again and it
  519.                will toggle off.  It can be used instead of
  520.                converting all PRINTs to LPRINTs.  Information
  521.                will still be displayed on the screen.  This will
  522.                not wrap the output lines like the screen will.
  523.  
  524.  
  525.      PRTSC
  526.  
  527.                This invokes the PRINT SCREEN function to copy the
  528.                screen out to the printer.  If you are using a
  529.                laser printer, you might want to use a FORMFEED
  530.                after this to do a page eject.
  531.  
  532.  
  533.      PSET      (row, col) [, exp]
  534.  
  535.                Set the pixel at row, col to exp.  The Portfolio,
  536.                regardless of the screen mode, has a maximum
  537.                64x240 for row, col.  Exp can evaluate to 0 or 1.
  538.  
  539.  
  540.      RANDOMIZE
  541.  
  542.                Initialize the random number generator.
  543.  
  544.  
  545.      READ      list of variables
  546.  
  547.                Read the values of the variables from the DATA
  548.                statements.  Variables can be simple or array.
  549.  
  550.  
  551.      REG       rn, val
  552.  
  553.                Set rn to val.  Allows for access to the 8086's
  554.                register set.  Values for rn are:
  555.  
  556.                     0 - Flags
  557.                     1 - AX
  558.                     2 - BX
  559.                     3 - CX
  560.                     4 - DX
  561.                     5 - SI
  562.                     6 - DI
  563.      
  564.  
  565.      REM
  566.  
  567.                Remark.  The rest of the line is ignored.  You can
  568.                also use the quote (') mark as a REM statement.
  569.  
  570.  
  571.      REPEAT / UNTIL exp
  572.  
  573.                Statements between the REPEAT and UNTIL statements
  574.                are executed until exp becomes TRUE.
  575.  
  576.  
  577.      RESTORE   [line number]
  578.  
  579.                Sets the internal data pointer to the specified
  580.                line number.  Line number specified must be a data
  581.                statement.  If no line number is given, the data
  582.                pointer will point back to the first data
  583.                location.
  584.  
  585.  
  586.      RESUME    line number
  587.  
  588.                After an error is trapped via ON ERROR GOTO,
  589.                resume will allow a program to continue at the
  590.                indicated line number.
  591.  
  592.  
  593.      RETURN
  594.  
  595.                Return from a subroutine invoked via a GOSUB.
  596.  
  597.  
  598.      RMDIR
  599.  
  600.                Remove a directory from the disk.  Directory must
  601.                be empty.
  602.  
  603.  
  604.      RUN       filename
  605.  
  606.                Load and execute the indicated program.  All the
  607.                variables are reset.
  608.  
  609.  
  610.      SCREEN    exp
  611.  
  612.                Set the screen mode.  There is no testing for
  613.                validity.  Some of the values that work on the
  614.                Portfolio are:
  615.  
  616.                      4   graphics  320x200
  617.                      5   graphics  320x200
  618.                      6   graphics  640x200
  619.                      7   text      80x25
  620.                      8   graphics  160x200
  621.                     10   graphics  640x200
  622.  
  623.                These are standard PC modes, but remember that the
  624.                Portfolio Screen is only 240x64.
  625.                If you use the screen function of the portfolio,
  626.                it is highly recommended that you set the screen
  627.                back to mode 7 before you exit.  Many portfolio
  628.                utilities only work in mode 7.
  629.  
  630.                At present, text will not be displayed properly on
  631.                a graphics screen.
  632.  
  633.  
  634.      STOP
  635.  
  636.                To allow for "breakpoints", STOP will terminate
  637.                the program and display the line number.  It will
  638.                point the built-in editor to the last position
  639.                executed if the editor file is the same as the
  640.                file being executed.
  641.  
  642.  
  643.      SWAP      varname, varname
  644.  
  645.                Exchange the contents of two variables.  They must
  646.                be of the same type.
  647.  
  648.  
  649.      SYSTEM
  650.  
  651.                END and SYSTEM have the same effect.
  652.  
  653.  
  654.      TROFF
  655.  
  656.                Disable line tracing.
  657.  
  658.  
  659.      TRON
  660.  
  661.                Enable line tracing.  Will display the line number
  662.                in brackets ([x]).  Using this statement will slow
  663.                down the program execution.  Can be placed
  664.                anywhere in program.
  665.  
  666.  
  667.      WAIT
  668.  
  669.                Unlike the GWBASIC version, this only waits for a
  670.                key press.  It gives no prompt and returns no
  671.                value.
  672.  
  673.  
  674.      WHILE exp / WEND
  675.  
  676.                All the statements between the WHILE and WEND
  677.                statements are executed while exp is TRUE.  If exp
  678.                is FALSE, the loop is not executed.
  679.  
  680.  
  681.      WRITE     list of expressions
  682.  
  683.                Similar to PRINT, but each element is separated by
  684.                a command (,), and strings are enclosed in quotes
  685.                (").
  686.  
  687.      WRITE#    fileno, list of expressions
  688.  
  689.                Same as WRITE, but send output to file.
  690.  
  691.  
  692.  
  693. BASIC FUNCTIONS
  694.  
  695.           I have tried to keep the syntax and semantics for the
  696.      functions as close to Microsoft BASIC as possible.  The
  697.      notes presented indicate exceptions.
  698.  
  699.  
  700.      ABS(exp)
  701.  
  702.                Returns the absolute value of exp.
  703.  
  704.  
  705.      ACOS(exp)
  706.  
  707.                Returns the arc cosine of exp.
  708.  
  709.  
  710.      ASC(x$)
  711.  
  712.                Returns ASCII value of the first character in x$.
  713.  
  714.  
  715.      ASIN(exp)
  716.  
  717.                Returns the arc sine of exp.
  718.  
  719.  
  720.      ATN(exp)
  721.  
  722.                Returns the arc tangent of exp.
  723.  
  724.  
  725.      BIN$(n)
  726.  
  727.                Convert n to a Binary string.
  728.  
  729.      CHR$(n)
  730.  
  731.                Returns the ASCII character of the value n.
  732.  
  733.  
  734.      COMMAND$
  735.  
  736.                Returns the command line tail.
  737.  
  738.  
  739.      COS(exp)
  740.  
  741.                Returns the Cosine of exp.
  742.  
  743.  
  744.      COSH(exp)
  745.  
  746.                Returns the Hyperbolic cosine of exp.
  747.  
  748.  
  749.      CSRLIN
  750.  
  751.                Returns the current cursor line.
  752.  
  753.  
  754.      DATE$     
  755.  
  756.                Returns the system date.
  757.  
  758.  
  759.      DEG(exp)
  760.  
  761.                Converts radians to degrees.
  762.  
  763.  
  764.      DMS(exp)
  765.  
  766.                Convert degrees into degrees/minutes/seconds, in
  767.                the form ddd.mmss.
  768.  
  769.  
  770.      EOF(fileno)
  771.  
  772.                Returns TRUE if fileno is at End-of-File.
  773.  
  774.  
  775.      ERL
  776.  
  777.                Return the line number the error occurred on.
  778.  
  779.  
  780.      ERR
  781.                Returns the error number of the last error.
  782.  
  783.  
  784.      EXP(exp)
  785.  
  786.                Returns e to the power of exp.
  787.  
  788.  
  789.      FALSE
  790.  
  791.                Returns 0.
  792.  
  793.  
  794.      FIX(exp)
  795.  
  796.                Returns the integer portion of exp.
  797.  
  798.  
  799.      FRE(exp)
  800.  
  801.                Returns the free amount of memory.  The parameter
  802.                exp is a dummy expression.
  803.  
  804.  
  805.      HEX$(n)
  806.  
  807.                Converts n to a hexadecimal string.
  808.  
  809.  
  810.      INKEY$
  811.  
  812.                If a key is pressed, the character is returned,
  813.                otherwise, the empty string ("") is returned.
  814.  
  815.  
  816.      INP(port)
  817.  
  818.                Returns the byte value from port.
  819.  
  820.  
  821.      INPUT$(n,#f)
  822.  
  823.                Returns the next n characters from file #f.
  824.  
  825.  
  826.      INSTR(x$,y$)
  827.  
  828.                Returns the position of y$ in x$.
  829.  
  830.  
  831.      INT(exp)
  832.  
  833.                Returns the integer portion of exp.
  834.  
  835.  
  836.      LEN(x$)
  837.  
  838.                Returns the length of x$.
  839.  
  840.  
  841.      LCASE$(x$)
  842.  
  843.                Return the lowercase version of x$.
  844.  
  845.  
  846.      LEFT$(x$,n)
  847.  
  848.                Returns the leftmost n characters of x$.
  849.  
  850.  
  851.      LOG(exp)
  852.  
  853.                Returns the natural logarithm of exp.
  854.  
  855.  
  856.      LPOS(exp)
  857.  
  858.                Returns the current position of the line printer
  859.                head.  Exp is a dummy expression.
  860.  
  861.  
  862.      LTRIM$(n$)
  863.  
  864.                Strips off any leading spaces.
  865.  
  866.  
  867.      MID$(x$,n,m)
  868.  
  869.                Returns a string from x$, starting at position n
  870.                for m characters.
  871.  
  872.  
  873.      MSD(exp)
  874.  
  875.                Converts degrees/minutes/seconds in the form
  876.                ddd.mmss to degrees.
  877.  
  878.  
  879.      OCT$(n)
  880.  
  881.                Converts n to an Octal string.
  882.  
  883.  
  884.      PBVER
  885.                Returns the version number of PBASIC.
  886.  
  887.  
  888.      PEEK(address)
  889.  
  890.                Returns the byte from memory location SEG:address. 
  891.                SEG is set via the DEF SEG instruction.
  892.  
  893.  
  894.      PI
  895.  
  896.                Returns the value of PI = 3.14159
  897.  
  898.  
  899.      POINT(row,col)
  900.  
  901.                Returns the value of the pixel at row,col.  If
  902.                this function does not appear to work, try running
  903.                FIX0D, to fix the ROM pixel read function.
  904.  
  905.  
  906.      POS(exp)
  907.  
  908.                Returns the current cursor column.  Exp is a dummy
  909.                expression.
  910.  
  911.  
  912.      RAD(exp)
  913.  
  914.                Convert degrees to radians.
  915.  
  916.  
  917.      RAND(exp)
  918.  
  919.                This will return a number between 0 and exp-1. 
  920.  
  921.  
  922.      REG(rn)
  923.  
  924.                Returns rn's value.  Allows for access to the
  925.                8086's register set.  Values for rn are:
  926.  
  927.                     0 - Flags
  928.                     1 - AX
  929.                     2 - BX
  930.                     3 - CX
  931.                     4 - DX
  932.                     5 - SI
  933.                     6 - DI
  934.  
  935.  
  936.      RIGHT$(x$,n)
  937.                Returns the rightmost n characters from x$.
  938.  
  939.  
  940.      RND
  941.  
  942.                This will return a number between 0 and 1.
  943.  
  944.  
  945.      RTRIM$(n$)
  946.  
  947.                Strips any trailing spaces from the string.
  948.  
  949.  
  950.      SGN(exp)
  951.  
  952.                Returns the sign of exp.
  953.  
  954.                     -1   exp < 0
  955.                      0   exp = 0
  956.                      1   exp > 0
  957.  
  958.  
  959.      SIN(exp)
  960.  
  961.                Returns the sine of exp.
  962.  
  963.  
  964.      SINH(exp)
  965.  
  966.                Returns the hyperbolic sine of exp.
  967.  
  968.  
  969.      SPACE$(n)
  970.  
  971.                Returns a string of n spaces.
  972.  
  973.  
  974.      SPC(n)
  975.  
  976.                Returns a string of n spaces.
  977.  
  978.  
  979.      SQR(exp)
  980.  
  981.                Returns the Square Root of exp.
  982.  
  983.  
  984.      STR$(n)
  985.  
  986.                Returns the string representation of n.
  987.  
  988.  
  989.      STRING$(n,m)
  990.  
  991.                Returns a string composed of n characters.  m is
  992.                the ASCII value of the characters. 
  993.  
  994.  
  995.      TAB(n)
  996.  
  997.                Moves the cursor to the nth column.
  998.  
  999.  
  1000.      TAN(exp)
  1001.  
  1002.                Returns the tangent of exp.
  1003.  
  1004.  
  1005.      TANH(exp)
  1006.  
  1007.                Returns the hyperbolic tangent of exp.
  1008.  
  1009.  
  1010.      TIME$
  1011.  
  1012.                Returns the system time.
  1013.  
  1014.  
  1015.      TIMER
  1016.  
  1017.                Returns the number of seconds since midnight.
  1018.  
  1019.  
  1020.      TRUE
  1021.  
  1022.                Returns -1.
  1023.  
  1024.  
  1025.      UCASE$(x$)
  1026.  
  1027.                Returns the uppercase version of x$.
  1028.  
  1029.  
  1030.      VAL(x$)
  1031.  
  1032.                Returns the numeric value of x$.
  1033.  
  1034.  
  1035.      VARSEG(var)
  1036.  
  1037.                Returns the segment of the variable.
  1038.  
  1039.  
  1040.      VARPTR(var)
  1041.                Returns the offset of the variable.
  1042.  
  1043.  
  1044.      WKSREAD(filename, row, col)
  1045.  
  1046.                Returns the numeric contents of the cell at row,
  1047.                col from a worksheet file.  Default Extension is
  1048.                .WKS.  Row/Col start at 0,0.  Example B5 would be
  1049.                4,1.
  1050.  
  1051.  
  1052.      WKSREAD$(filename, row, col)
  1053.  
  1054.                Returns the string contents of the cell at row,
  1055.                col from a worksheet file.  Default Extension is
  1056.                .WKS.  Row/Col start at 0,0.  Example D10 would be
  1057.                9,3.
  1058.   
  1059.  
  1060.      WKSTYPE(filename, row, col)
  1061.  
  1062.                Returns the type of the cell at row, col from a
  1063.                worksheet file.  Default Extension is .WKS. 
  1064.                Row/Col start at 0,0.  Example AB2 would be 1,27.
  1065.  
  1066.                Values returned:
  1067.                     1    EOF       12   Blank
  1068.                     13   Integer   14   Real
  1069.                     15   Label     16   Formula Result (Real)
  1070.  
  1071.  
  1072. PORTFOLIO ONLY STATEMENTS
  1073.  
  1074.      The statements in this section are specific to the Atari
  1075.      Portfolio and will not run on a regular PC.  YOU CAN LOCK UP
  1076.      YOUR REGULAR PC IF YOU ATTEMPT TO USE THESE.  Starting with
  1077.      version 4.0, using these statements on a standard PC will
  1078.      generate an error message.
  1079.  
  1080.  
  1081.      ALARM
  1082.  
  1083.                This will beep the speaker, about once a second
  1084.                until the user presses a key.  The program will
  1085.                then continue with the next statement.
  1086.  
  1087.  
  1088.      BEEP
  1089.  
  1090.                This will cause a single beep from the speaker.
  1091.  
  1092.  
  1093.      BOX       row1, col1, row2, col2, type
  1094.  
  1095.                This will draw a box.  Row1 and Col1 specify the
  1096.                upper left corner position of the box, while Row2
  1097.                and Col2 specify the lower right corner.  Type is
  1098.                0 for single line box, and 1 for a double line
  1099.                box.
  1100.  
  1101.                Trying to draw a box larger than the screen (8x40)
  1102.                has unpredictable results.
  1103.  
  1104.  
  1105.      CLICK
  1106.  
  1107.                Make the key click sound.
  1108.  
  1109.  
  1110.      DIAL      string
  1111.  
  1112.                This will dial the "number" through the speaker. 
  1113.                Valid characters for tones are: 0 1 2 3 4 5 6 7 8
  1114.                9 A B C D * #.  The letters must be in uppercase.
  1115.  
  1116.  
  1117.      DISPLAY   exp
  1118.  
  1119.                Set the Portfolio screen to Normal, Static or
  1120.                Tracked.  0=Static, 1=Normal, 2=Tracked.  The mode
  1121.                is only effective while in PBASIC.  Using this
  1122.                statement might clear the screen depending on the
  1123.                position of the cursor.
  1124.  
  1125.  
  1126.      ERRWIN    row, col, "message"
  1127.  
  1128.                This will draw a box around the message and
  1129.                display it at the specified row, col.  It will
  1130.                then beep and wait for a keypress.  The text
  1131.                underneath the message is left untouched.
  1132.  
  1133.                Trying to place the message outside the screen
  1134.                (8x40) has unpredictable results.
  1135.  
  1136.  
  1137.      GETDISPLAY
  1138.  
  1139.                This function will return the current display
  1140.                mode.  See DISPLAY for details.
  1141.  
  1142.  
  1143.      MENU(row, col, display, top line, selected, elements,
  1144.           "Title", entries....)
  1145.                This will display a menu, allow a selection, and
  1146.                will return the item selected.  If value returned
  1147.                is -1, then the escape has been pressed.  If the
  1148.                value returned is > 255 then (value % 256) is the
  1149.                selected element, and (value \ 256) is the top
  1150.                line.  Elements are numbered from 0.
  1151.  
  1152.                Row and Col indicate the location of the menu. 
  1153.                Display is the number of elements to display at
  1154.                one time.  The maximum is 6.  Top Line is element
  1155.                at the top of the menu, and selected is the
  1156.                element that the cursor is placed on.  Elements is
  1157.                the number of menu entries plus the Title.  The
  1158.                title string is first, followed by each entry. 
  1159.                Each element can be a string or a string variable.
  1160.  
  1161.                Example:
  1162.  
  1163.                     mc = MENU(2,2,4,0,0,7,"Demo","A", "B", "C",
  1164.                     "D", "E", "F")
  1165.  
  1166.                If the user picks A, mc = 0, for B, mc = 1.  If
  1167.                the user picks F, mc = 517, which means the entry
  1168.                is 5, and the top line was 2.  This will allow
  1169.                selection from the menu from the same position the
  1170.                second time it is invoked.
  1171.  
  1172.  
  1173.  
  1174.      OFF
  1175.  
  1176.                This will turn the Portfolio off until the user
  1177.                presses a key.  The program will continue
  1178.                execution with the next statement.
  1179.  
  1180.  
  1181.      PORT
  1182.  
  1183.                This function will return a 1 if running on a
  1184.                Portfolio, a 0 if not.  Handy if you want to run
  1185.                program on both machines without locking up the
  1186.                PC.  WARNING: There is no positive way to identify
  1187.                the Portfolio.  This functions checks to see if
  1188.                the Interrupt 61h vector is pointing to 0000:0000. 
  1189.                This is not normally used on the PC, but is on the
  1190.                Portfolio.  If you are running a TSR that takes
  1191.                over this vector, PORT will return 1.
  1192.  
  1193.  
  1194.      REFRESH
  1195.  
  1196.                Copy video memory to the LCD controller.  Needed
  1197.                for when you are doing direct write to screen
  1198.                memory.
  1199.  
  1200.  
  1201.      ROMVER
  1202.  
  1203.                This function will return the version number of
  1204.                the Portfolio rom's.
  1205.  
  1206.  
  1207.  
  1208.      SCRLOAD n$(x)
  1209.  
  1210.                Copy the contents from n$(x) back to the screen.
  1211.  
  1212.  
  1213.      SCRSAVE n$(x)
  1214.  
  1215.                Save the contents of the screen to n$(x).  n$ must
  1216.                be DIMension to be at least two strings, since the
  1217.                screen requires 320 bytes to be saved.  No check
  1218.                is made to see if enough memory is available.
  1219.  
  1220.                Example:
  1221.  
  1222.                     DIM s$(1) : rem s$(0), s$(1) will hold screen
  1223.                     SCRSAVE s$(0) : rem save it
  1224.                     ....
  1225.                     SCRLOAD s$(0) : rem restore it
  1226.  
  1227.  
  1228.      SOUND     code, duration
  1229.  
  1230.                This will activate the tone generator.  Duration
  1231.                is the length of tone in 10 msec intervals.  Tone
  1232.                codes are displayed below.  These codes are taken
  1233.                from the Atari Portfolio Technical Reference
  1234.                Manual, copyrighted by the Atari Corporation.
  1235.  
  1236.                CODE      NOTE      Frequency (Hz)
  1237.  
  1238.                48        D#5       622.3
  1239.                49        E5        659.3
  1240.                50        F5        698.5
  1241.                51        F#5       740.0
  1242.                52        G5        784.0
  1243.                53        G#5       830.6
  1244.                54        A5        880.0
  1245.                55        A#5       932.3
  1246.                56        B5        987.8
  1247.                57        C6        1046.5
  1248.                58        C#6       1108.7
  1249.                41        D6        1174.7
  1250.                59        D#6       1244.5
  1251.                60        E6        1318.5
  1252.                61        F6        1396.9
  1253.                14        F#6       1480.0
  1254.                62        G6        1568.0
  1255.                44        G#6       1661.2
  1256.                63        A6        1760.0
  1257.                 4        A#6       1864.7
  1258.                 5        B6        1975.5
  1259.                37        C7        2093.0
  1260.                47        C#7       2217.5
  1261.                 6        D7        2349.3
  1262.                 7        D#7       2489.0
  1263.  
  1264.                Aside from these codes, other values will produce
  1265.                sounds as well.
  1266.  
  1267.  
  1268.      STATUS    exp
  1269.  
  1270.                This will enable or disable the Status line.  This
  1271.                is the line that you see when you use the <LOCK>
  1272.                key on the Portfolio.  0 for off, 1 for on.
  1273.  
  1274.  
  1275.      TICK      exp
  1276.  
  1277.                Sets the Clock tick speed.  0 is Normal, 1 tick
  1278.                every 128 seconds.  1 is Fast, 1 tick every
  1279.                second.  1 uses much more power.
  1280.  
  1281.  
  1282.      VCSRLIN
  1283.  
  1284.                Returns the current virtual cursor line.
  1285.  
  1286.  
  1287.      VLOCATE   row,col
  1288.  
  1289.                Move the virtual cursor to row, col.  This
  1290.                location will be at position 1,1 on the physical
  1291.                screen.
  1292.  
  1293.  
  1294.      VMOVE     dir, dis
  1295.  
  1296.                Move the screen in direction dir for dis number of
  1297.                lines.  Works only in Static and Tracked modes. 
  1298.                Same as using the ALT arrow keys.  Values for dir
  1299.                are 1=Up,2=Down,3=Left,4=Right.
  1300.  
  1301.      VPOS(exp)
  1302.  
  1303.                Returns the current virtual cursor column.  Exp is
  1304.                a dummy expression.
  1305.  
  1306.  
  1307.  
  1308. BREAKING OUT OF PROGRAMS
  1309.  
  1310.      It appears that if you use the CONTROL-C key to break out of
  1311.      a PBASIC program, it will lock up a few minutes later.  I
  1312.      have tried to trace this, but to no avail.  Chalk it up a
  1313.      difference between the PC and Portfolio.  To eliminate this
  1314.      problem, you can now use the ATARI key, ( /|\ ) by itself,
  1315.      to exit from a PBASIC program.  Press the key at any point. 
  1316.      As long as you hold down the key, the error message "BREAK
  1317.      in xx" will remain on the screen.  Release the key and you
  1318.      are returned to the MD/DOS prompt.  If you execute the
  1319.      program from the editor, you will be returned to the editor,
  1320.      with the cursor pointing to the last executed statement.
  1321.  
  1322.  
  1323. UPGRADE HISTORY
  1324.  
  1325.      Version 4.1    February 13, 1991
  1326.  
  1327.           Now using PKLITE for compressions, saves about 1k.
  1328.           Added parameter to LOCATE statement to turn off cursor.
  1329.           Increased range of HEX$/OCT$/BIN$.
  1330.           Fixed ASC for characters greater than 127.
  1331.           Fixed FOR loop parameters: K=5:FOR K=1 to K+5 is now 1
  1332.                to 10 instead of 1 to 6.
  1333.           Fixed DMS and MSD for negative numbers.
  1334.           Fixed Error messages in EVAL function.
  1335.           Fixed DIM out of memory for strings.
  1336.  
  1337.  
  1338.      Version 4.01   February 7, 1991 (School Only)
  1339.  
  1340.           Added @location, to PRINT statements for Model 100
  1341.                compatibility.
  1342.           Reorganized command table to save about 1k.
  1343.           Fixed negative numbers in DATA statements problem.
  1344.           Modified the NEXT statement:  If no variable, top of
  1345.                stack is used.  If variable is given, stack is
  1346.                searched for match.  Allows for aborting FOR loops
  1347.                early.
  1348.           Fixed relational operators.  Return -1 instead of 1.
  1349.           Fixed symbol table overflow.  Fixed documentation - 130
  1350.                variables.
  1351.           Add additional error checking on file handling.
  1352.           Add range checking to the string operations.
  1353.           Fixed INPUT: long numbers entered as strings caused
  1354.                overflow errors.
  1355.           Fixed String Initialization problem.
  1356.  
  1357.  
  1358.      Version 4.0    February 1, 1991
  1359.  
  1360.           New Statements: USING, CLOSE, EOF, INPUT$, NUMFMT,
  1361.                OPEN, PRINT#, REPEAT, UNTIL,  WEND, WHILE, WRITE#
  1362.           New Functions: ACOS, AND, ASIN, COSH, DEG, DMS, EOF,
  1363.                EQV, IMP, LTRIM$, MSD, OR, RAD, RTRIM$, SINH, SPC,
  1364.                TAB, TANH, WKSREAD, WKSREAD$, WKSTYPE, XOR
  1365.           New Portfolio Only: MENU, SCRLOAD, SCRSAVE
  1366.           Sequential Files.
  1367.           Menus.
  1368.           Worksheet Importing Functions.
  1369.           Reorganized GetToken to increase speed.
  1370.           Reserved word lookup is now indexed binary search.
  1371.           Code was tighten and refined.
  1372.           Arrays can be used with FOR statements.
  1373.           Fixed error in .PGC compression routines.  To convert
  1374.                any old .PGC files to the correct format, use the
  1375.                following program:
  1376.  
  1377.                     10 INPUT "Filename? ";f$:IF f$ = "" THEN END
  1378.                     SCREEN 6:PGLOAD f$:PGSAVE f$:SCREEN 7:GOTO 10
  1379.  
  1380.           Changed PC error messages to interface with PBE.
  1381.           IF statements modified to allow for single expression
  1382.                evaluation.  Allows for IF EOF(1) THEN etc...  If
  1383.                the result is 0, it is false, anything else is
  1384.                true.
  1385.           Modified the FOR statement to work more like GWBASIC. 
  1386.                If the starting value to beyond the ending value,
  1387.                the loop is not executed.  This includes nested
  1388.                loops.
  1389.           The Atari key ( /|\ ) will now act as a break key.
  1390.           Reorganized the IF statement to handle strings better.
  1391.           Installed option to output numbers in GWBASIC style: 
  1392.                leading space or -, followed by space.  Can be set
  1393.                by NUMFMT="% g " at the beginning of the program.
  1394.           Eliminated recursive ON ERROR trapping.
  1395.           Fixed DIM problem with multiple/mixed arrays.
  1396.           Fixed TAN error.
  1397.           Added looping - WHILE/WEND, REPEAT/UNTIL.
  1398.           Added LEN to the documentation.
  1399.           Fixed CHAIN variable loss.
  1400.           Added additional math error traps.
  1401.           Fixed -0 problem.
  1402.           Fixed negative numbers in print statements.
  1403.  
  1404.           Disk Size      - 38539 bytes
  1405.           SPEED.BAS      - 19.4 seconds
  1406.           SIEVE.BAS      - 51.4 seconds
  1407.           TEST40.BAS     - 17.0 seconds
  1408.           TEST31.BAS     - 16.5 seconds
  1409.           TEST30.BAS     - 15.9 seconds
  1410.           TEST21.BAS     - 10.0 seconds
  1411.  
  1412.  
  1413.      Version 3.1a   January 12, 1991
  1414.  
  1415.           Minor bug : A$ = A$ + ...  A$ is lost.  Fixed.
  1416.  
  1417.  
  1418.      Version 3.1    January 5, 1991
  1419.  
  1420.           New Statements: BLOAD, BSAVE, CALL, CALL INTERRUPT,
  1421.                CHAIN, CHDIR, DECR, ERROR, EVAL, INCR, KILL,
  1422.                MKDIR, ON ERROR GOTO, PGLOAD, PGSAVE, PGSHOW,
  1423.                RESUME, RMDIR, RUN
  1424.           New Functions: BIN$, COMMAND$, ERL, ERR, FALSE, LCASE$,
  1425.                PI, TRUE, UPCASE$, VARSEG, VARPTR
  1426.           Corrected the spelling of Walter Daniel's name. :-}
  1427.           Added support for .PGC files.
  1428.           Fixed DATA wrap around problem.
  1429.           Fixed DIAL problem.
  1430.           Error message for Portfolio Only Statements on PC.
  1431.           Disk Size      - 35186 bytes
  1432.           SPEED.BAS      - 25.9 seconds
  1433.           SIEVE.BAS      - 79.5 seconds
  1434.           TEST31.BAS     - 21.0 seconds
  1435.           TEST30.BAS     - 20.5 seconds
  1436.           TEST21.BAS     - 13.0 seconds
  1437.  
  1438.  
  1439.      Version 3.0    November 25, 1990.
  1440.  
  1441.           Added sample programs.
  1442.           Complied with Turbo C, version 2.0.
  1443.           Added Help file for Portfolio Address Function.
  1444.           Two Dimensional Arrays.
  1445.           Expanded TEST.BAS to TEST30.BAS with strings.
  1446.           Disk Size      - 33123 bytes
  1447.           SPEED.BAS      - 27.4 seconds
  1448.           TEST30.BAS     - 21.5 seconds (corrected)
  1449.           TEST21.BAS     - 13.0 seconds (corrected)
  1450.           New Functions: PBVER
  1451.  
  1452.  
  1453.      Version 2.9    Beta Release - September 30, 1990.
  1454.  
  1455.           Added Strings.
  1456.           Modified READ, SWAP and DIAL to handle strings.
  1457.           Added STRING arrays.
  1458.           Modified IF and PRINT to work with string expressions.
  1459.           Fixed PRINT" problem. 
  1460.           Allow line numbers directly after THEN or ELSE.
  1461.           Now allows two dimensional arrays of any type.
  1462.           Converted to Turbo C++, Version 1.0.
  1463.           New Functions : ASC, DATE$, INSTR, INKEY$, VAL, LEFT$,
  1464.                MID$, RIGHT$, CHR$, HEX$, OCT$, SPACE$, STR$,
  1465.                STRING$, TIME$
  1466.  
  1467.  
  1468.      Version 2.2    Not Released.
  1469.  
  1470.           Added hashing feature to symbol table to speed up
  1471.                variable table access.  10% increase in TEST.
  1472.           Added automatic default extension of ".BAS"
  1473.  
  1474.  
  1475.      Version 2.1    August 4, 1990
  1476.  
  1477.           New Statements: DATA, READ, RESTORE
  1478.           New Functions : LOG
  1479.           TRON invoked from command line switch -T
  1480.           Adjusted the screen coordinates from 0,0 to 1,1 to
  1481.                match GWBASIC.  While this will cause some
  1482.                incompatibilities with previous versions of
  1483.                PBASIC, it will make it more compatible with
  1484.                GWBASIC.
  1485.           Added INP to the documentation.
  1486.           Added FRE to the documentation.
  1487.           Installed Binary search for command checking.  Speed
  1488.                increase about 40%.
  1489.           One letter variable names are not checked in command
  1490.                table.
  1491.           Fixed the load routine to allow for no CR/LF at the end
  1492.                of the file.
  1493.           Fixed FIX function.
  1494.           Fixed scientific constants.
  1495.           Fixed power (^) function.
  1496.           Disk Size      - 29649 bytes
  1497.           SPEED.BAS      - 30.9 seconds
  1498.           TEST21.BAS     - 12.9 seconds
  1499.  
  1500.  
  1501.      Version 2.0    July 27, 1990
  1502.  
  1503.           New Statements: LPRINT, PRINTER, FORMFEED, PRTSC, WAIT,
  1504.                OUT, DIM
  1505.           New Functions : LPOS, ATN, EXP, FIX, INT, COS, SIN,
  1506.                SQR, TAN, TIMER, \, INP, FRE
  1507.           New Portfolio Only : GETDISPLAY, DISPLAY, VLOCATE,
  1508.                VMOVE, VPOS, VCSRLIN, ROMVER, PORT
  1509.           200 variables, 8 significant characters.
  1510.           <ALT-R> TSR to invoke BASIC from inside editor.
  1511.           Program size limited to available memory.
  1512.           All variables are now SINGLE PRECISION FLOATING POINT.
  1513.           One Dimensional Floating Point Arrays.
  1514.           Fixed FOR/NEXT looping with a negative step.
  1515.           Fixed the use of FUNCTIONS in PRINT statements.
  1516.           Fixed EOF error on Portfolio: Lockup if no END
  1517.                statement.
  1518.           Added extensive printer support.
  1519.           DEFINT will now cause a syntax error.
  1520.           RND was changed to make it MS compatible.
  1521.           SWAP was make array compatible.
  1522.           Fixed ... else "string" problem.
  1523.           Added NEXT to the documentation.
  1524.  
  1525.  
  1526.      Version 1.1    July 21, 1990
  1527.  
  1528.           New Statements: DEF SEG, POKE
  1529.           New Functions : PEEK
  1530.           New Portfolio Only : REFRESH, TICK, CLICK, STATUS
  1531.           Automatically invoke Editor on Error.
  1532.           Fixed ALARM problem: keystroke was going into buffer.
  1533.           Fixed ON x GOTO/GOSUB problem: Offset line count by 1.
  1534.           Improved Error Detection.
  1535.           Allow REM in PRINT with preceding colon (:).
  1536.           Implement the quote (') as a substitute for REM.
  1537.           Fix PSET documentation to indicate ()'s.
  1538.           Screen mode changes, return to original on error.
  1539.           Allow for spaces as separator in PRINT.
  1540.  
  1541.      Version 1.0    July 14, 1990
  1542.  
  1543.           Initial release.
  1544.  
  1545.  
  1546. TECHNICAL NOTES
  1547.  
  1548.      PBASIC is about 3300 lines of code was written in Turbo C,
  1549.      version 2.0, compiled to an executable file just under 58k
  1550.      in size.  PBASIC was then compressed with LZEXE, version
  1551.      0.91, to further reduce the size to about 38k.
  1552.  
  1553.      PBASIC will run on a regular PC, providing you do not use
  1554.      any Portfolio specific statements.  If you have the
  1555.      Portfolio Emulation software (I60, I61), you can use all the
  1556.      features.  PBASIC will now generate an error if you try to
  1557.      use a Portfolio only instruction on a PC.
  1558.  
  1559.      PBASIC was developed on a Gateway 2000, 33Mhz 386 PC with 4
  1560.      megabytes of memory.  It was tested on the Atari Portfolio,
  1561.      ROM version 1.052.
  1562.  
  1563.  
  1564. BATCH CONSIDERATIONS
  1565.  
  1566.      If you are running PBASIC as a batch file, you can access
  1567.      the ERRORLEVEL code generated upon exit.
  1568.  
  1569.                0 - Successful exit
  1570.                1 - Program aborted
  1571.                2 - STOP encountered
  1572.  
  1573.  
  1574.  
  1575. ERROR NUMBER AND MESSAGES
  1576.  
  1577.       1   NEXT without FOR
  1578.       2   Syntax Error
  1579.       3   RETURN without GOSUB
  1580.       4   Out of DATA
  1581.       5   Illegal Function Call
  1582.       6   Overflow
  1583.       7   Out of Memory
  1584.       8   Undefined Line Number
  1585.       9   Subscript Out of Range
  1586.      10   Duplicate Definition
  1587.      11   Division by Zero
  1588.      13   Type Mismatch
  1589.      14   Out of String Space
  1590.      15   String Too Long
  1591.      18   Undefined User Function
  1592.      19   No RESUME
  1593.      20   RESUME without Error
  1594.      22   Missing Operand
  1595.      30   WEND without WHILE
  1596.      31   Array Undefined
  1597.      32   Not A Variable
  1598.      33   Too Many Line Numbers
  1599.      34   Duplicate Line Number
  1600.      35   Too Many Nested FORs
  1601.      36   Too Many Nested GOSUBs
  1602.      37   Name/Line Number Too Long
  1603.      38   BREAK
  1604.      39   Portfolio Only
  1605.      51   Internal Error
  1606.      52   Bad File Number
  1607.      53   File Not Found
  1608.      54   Bad File Mode
  1609.      61   Disk Full
  1610.      73   Advanced Feature
  1611.      76   Path Not Found
  1612.  
  1613. FUTURE ENHANCEMENTS
  1614.  
  1615.      - Increase compatibility with Microsoft BASIC
  1616.      - Faster
  1617.  
  1618.  
  1619. THE FILES
  1620.  
  1621. PBAS40.ZIP
  1622.  
  1623.      PBASIC.EXE     The Interpreter.
  1624.      PBASIC.TXT     This file.
  1625.      PBASIC.ADR     Help file to be loaded into the Address book
  1626.                          on the Portfolio.
  1627.      ALTR.COM       TSR to execute PBASIC from editor.
  1628.      TEST40.BAS     A program to exercise the interpreter. 
  1629.                          Should not generate any errors.  It will
  1630.                          run on a PC or Portfolio.  Take a look
  1631.                          at it, it demos many of the features of
  1632.                          the Portfolio Only routines.
  1633.      C.BAT          Calculate Expression from DOS.  Invokes
  1634.                          PBASIC.EXE to display answer.
  1635.                     Example: C 123*(567+9845)/18
  1636.  
  1637. PBSA40.ZIP
  1638.  
  1639.      Sample PBASIC programs
  1640.      100DAYS.BAS    Calculate 100 days after a date.
  1641.      2CURVE.BAS     Graph Plot program.  Written by Rob Kunstadt.
  1642.      ADDTIME.BAS    Program to add up time in Minutes and
  1643.                          Seconds.  Written by Louis Shapiro.
  1644.      BAR.BAS        Bar Chart program.  Written by Rob Kunstadt.
  1645.      CHART.BAS      Chart hours worked.  Written by Rob Kunstadt.
  1646.      CIRCLE.BAS     Demo of Circle Drawing Subroutine.
  1647.      DAYS.BAS       Calc the number of days between two dates.
  1648.      ETCH.BAS       Simple Drawing Program now with PGC support.
  1649.      REV.BAS        Game of Reverse.
  1650.      VADERS.BAS     Space Invaders program from Model 100 forum.
  1651.      QCHESS.BAS     Chess Program from the Model 100 forum.
  1652.  
  1653.      The MUSIC Files by John Fraser
  1654.      BACH1.BAS      BACH2.BAS      BETH2.BAS
  1655.      BDAY.BAS       KRIEGER.BAS    PETER1.BAS
  1656.      MUSIC.TXT      Notes from the author.
  1657.  
  1658.      Portfolio Graphic Files (Compressed) by Don Messerli
  1659.      BOMB.PGC       FUJI.PGC       PORTF.PGC
  1660.      USA.PGC        SPRIAL.PGC     GORBY.PGC
  1661.      PGDEMO.BAS     Sample program to demo PGC files.
  1662.  
  1663.      Utilities
  1664.      FIX0D.COM           TSR fix for Portfolio graphics rom.
  1665.      FIX0D.TXT 
  1666.  
  1667.  
  1668. ALSO AVAILABLE
  1669.  
  1670.      PBE.EXE        PBASIC Editor for PC's
  1671.      PBE.DOC        Full screen editor designed for PBASIC
  1672.                     development for the Portfolio.  Invoke PBASIC
  1673.                     from inside the editor.  Access FT to
  1674.                     transmit/receive files to/from the Portfolio.
  1675.  
  1676.  
  1677. ABOUT THE AUTHOR
  1678.  
  1679.      Mr. BJ Gleason is an Instructor at The American University
  1680.      in the Computer Science and Information Systems Department. 
  1681.      He has been programming for over a decade now.
  1682.  
  1683.  
  1684. COMMENTS, BUGS AND IDEAS
  1685.  
  1686.      What features do you really need in PBASIC to make it more
  1687.      useful on the Portfolio?  If you would like to see some new
  1688.      features, contact me and I will try to accommodate you and
  1689.      release a new version.
  1690.  
  1691.  
  1692. ACKNOWLEDGEMENTS
  1693.  
  1694.      Thanks to all those Compuserve for their bug reports,
  1695.      suggestions and words of encouragement.  Without their
  1696.      feedback, version 4.1 would have never seen the light of
  1697.      day.  Keep those cards and letters coming!
  1698.  
  1699.      The author would also like to extend his thanks to Walter
  1700.      Daniel, for helping me track down the ever-elusive bugs, and
  1701.      putting up with a flaky copy of version 2.9.  Thanks also to
  1702.      Don Messerli, for his help implementing the graphic routines
  1703.      to support the .PGC graphics standard.  Finally, many thanks
  1704.      to Ron Luks, the sysop of the APORTFOLIO conference on
  1705.      Compuserve.
  1706.  
  1707.      Thanks also to all the students (Those bug stomping fools!)
  1708.      in my Programming Languages Course, Spring 1991, at the
  1709.      American University.
  1710.  
  1711.  
  1712. ADDRESS
  1713.  
  1714.      If you have an comments, suggestions or bug reports, you can
  1715.      write to the author at:
  1716.  
  1717.           BJ Gleason
  1718.           The American University
  1719.           CSIS  (Thin Air Labs)
  1720.           4400 Massachusetts Avenue, N.W.
  1721.           Washington, DC  20016
  1722.  
  1723.           Compuserve : 73337,2011
  1724.  
  1725.      
  1726.      This program and documentation can be copied and distributed
  1727.      freely.  It can not be sold or used for commercial purposes
  1728.      without permission.
  1729.  
  1730.      PBASIC version 4.1, Copyright 1991 by BJ Gleason.
  1731.  
  1732.      Portfolio, Atari, Microsoft, GWBASIC are trademarks of their
  1733.      respective companies.
  1734. ə