Update Debugger.md

table format fixes
This commit is contained in:
ksherlock 2018-02-10 00:50:08 -05:00 committed by Kelvin Sherlock
parent e620357dc6
commit a4e825198f

View File

@ -77,14 +77,16 @@ There is no operand for this instruction. In assembly language, it looks like t
### Figure A-1: Debugger Symbol Table Format ### Figure A-1: Debugger Symbol Table Format
$00 Displacement to the end of the table $00 Displacement to the end of the table
$02 Pointer to the next variable name. The name is stored in Pascal string format. --- repeat for each variable
$06 Pointer to the variable's value. If the variable is an array, then this points to the first element. | $02 Pointer to the next variable name. The name is stored in Pascal string format.
$0a Address flag; 0 -> direct page, 1 -> long address | $06 Pointer to the variable's value. If the variable is an array, then this points to the first element.
$0b Format of value; see table A-2 | $0a Address flag; 0 -> direct page, 1 -> long address
$0c Number of subscripts; 0 if not array | $0b Format of value; see table A-2
$0e Minimum subscript value | $0c Number of subscripts; 0 if not array
$12 Maximum subscript value | --- repeat for each array dimension
$16 Size of each element | | $0e Minimum subscript value
| | $12 Maximum subscript value
| | $16 Size of each element
The following table shows the format used to store the variables current value: The following table shows the format used to store the variables current value: