VLIST

Use VLIST to display a listing of the object code of a BASIC program. The syntax for VLIST is as follows:

VLIST [ filename ] program [ R ]
filename
The name of the file containing the source code of the BASIC program. The default filename is BP.
program
The name of the program to list.
R
Displays internal reference numbers for variables and constants rather than source code names and values.

VLIST displays each line of source code followed by the lines of object code it generated. VLIST also displays program statistics.

>VLIST BP TO.LISTMain Program "BP.O/TO.LIST"
Compiler Version: 7.3.1.1
Object Level    : 5
Machine Type    : 1
Local Variables : 1
Subroutine args : 0
Unnamed Common  : 0
Named Common Seg: 0
Object Size     : 34
Source lines    : 4

0001: FOR I = 1 TO 10
0001 0000 : 0F8 move           0  => I 
0001 0006 : 098 forincr        I 10 1 0020: 

0002: PRINT I
0002 0014 : 130 printcrlf      I 

0003: NEXT I
0003 001A : 0C2 jump           0006: 

0004: END
0004 0020 : 190 stop