HP Business BASIC/XL Reference Manual - HP 3000 MPE/iX Computer Systems - Edition 1 (32715-90001)
2-: 23
260@
B2 SIMPLE SHORT INTEGER
260@
I1 SIMPLE COMMON SHORT INTEGER
220@ 1920* 1930 1940 2800* 2810 2820 2850* 2880
2890 2910* 2920 2930 2940 2950 2970 3190* 3200
3210 3280* 3290 3670* 3680 3750
Z SIMPLE COMMON SHORT INTEGER
220@ 1270* 1280 1630* 1640 1800* 1810 2080* 2090
2220* 2240 2760* 2770 3160* 3680 3700 3720
Examples
>XREF !Default parameters
>XREF TO Printer !Listing to Printer
>XREF WITH LIST !Cross reference will follow the source
!for each program part
>XREF MAIN,Sub1,FNX TO Display !Listing for selected program units,
!to the terminal
>XREF SUB Sub2 WITH LIST !Cross reference for Sub2
Program File Management
A program file is a file that contains an HP Business BASIC/XL program.
The program is stored in a file in one of the following formats:
BASIC SAVE A binary program file that contains a correct HP
Business BASIC/XL program. It can be stored and
retrieved more efficiently than an ASCII or BASIC DATA
file. It does not have to be converted to ASCII or
BASIC DATA format when it is stored, or have the syntax
checked when it is retrieved. A program is to be
compiled must be stored in this form.
_______________________________________________________
NOTE "Clean" BASIC SAVE files from time to time by
saving the program in that file to an ASCII file
from the interpreter, using GET to bring the ASCII
file into the interpreter and then using RESAVE to
store the file to the BASIC SAVE file. This is
necessary because the interpreter does not do
complete "garbage collection" when program lines
are deleted or modified.
_______________________________________________________
ASCII An ASCII program file has fixed-length 80-byte records.
Each program line is a series of one or more records.
If a line exceeds the record length, the record ends
with a continuation character (&) and the line continues
in the next record. An ASCII file looks like the output
of the LIST;NONAME command.