
Chapter 2. Development Environment and Procedures
35
[ 4 ] Outputting list files
The Compiler may output three types of list files as listed below depending upon the options
specified at the start of compiling, in order to help you program and debug efficiently.
The list file will be given the same name as the source program file and annexed with an exten-
sion .LST.
When outputted, each list file has the header format as shown below.
BHT-BASIC 3.5 Compiler Version X.XX ←
Version of BHT35CPL.DLL
Copyright (C) DENSO CORPORATION 1998. All rights reserved.
source = Source filename.ext (to be given as an absolute path)
■
Address-source list
Select the Address-source List check box and run the Compiler, and the following information
will be outputted:
BHT-BASIC 3.5 Compiler Version X.XX
Copyright (C) DENSO CORPORATION 1998. All rights reserved.
source = C:\TEST.SRC
List File Option Filename Extension
Address-source list
Symbol table
Cross reference
Select the Address-source List check box.
Select the Symbol table check box.
Select the X (Cross) reference check box.
.LST
0000 0001 '* * * * * * * * * * * * *
0000 0002 '*
0000 0014 ON ERROR GOTO ErrorProg
0003 0015
0003 0016 DEFREG vF% = 0
0003 0017 DEFREG ConF% = 0
0003 0018 DEFREG RecF% = 0
0003 0019 DEFREG FreeSpace
0003 0020 DEFREG ESC = -1
0003 0021 DEFREG bps$ = "9600"
0003 0022
0338 0023 REM $ INCLUDE : 'SAKeyFnc. SRC'
0338 0024
0338 0025 Master$ = "Master92. DAT"
034A 0026 Workfile$ = "WrkFils. DAT"
035C 0027 Sales$ = "SalesSA. DAT"
036D 0028
036D 0029 IF vf% = 0 THEN
0377 0030 GOSUB cautionB
037A 0031 CLOSE
037E 0032 Freespace = FRE(1)
0387 0033 vF% = 1
038E 0034 END IF
038E 0035 MainProg:
038E 0036 GOSUB filOpen
0000 Error Statement Compiled End.
Addr Line Statement
Address of object program in
intermediate language
Line number in source
program
Source program statement
Komentáře k této Příručce