aboutsummaryrefslogtreecommitdiff
path: root/vxrefbas.rst
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-06-15 16:22:25 -0400
committerB. Watson <urchlay@slackware.uk>2024-06-15 16:22:25 -0400
commit5b4d161d5c82105f92006aa9cebbcd72b9383178 (patch)
treefb8f8e430e61a828a2327cedfb2b69894fce0c7e /vxrefbas.rst
parented4f8e0e2e20cb16f40844895f79b69da96caf35 (diff)
downloadbw-atari8-tools-5b4d161d5c82105f92006aa9cebbcd72b9383178.tar.gz
vxrefbas: WIP.
Diffstat (limited to 'vxrefbas.rst')
-rw-r--r--vxrefbas.rst33
1 files changed, 3 insertions, 30 deletions
diff --git a/vxrefbas.rst b/vxrefbas.rst
index 510d016..2e18186 100644
--- a/vxrefbas.rst
+++ b/vxrefbas.rst
@@ -49,6 +49,9 @@ which show the type of variable access.
**R**
Variable was *READ* on this line.
+**G**
+ Variable was read with *GET* on this line.
+
OPTIONS
=======
@@ -64,36 +67,6 @@ General Options
Verbose operation. When displaying a number in verbose mode, it will
be prefixed with *$* if it's in hex, or no prefix for decimal.
-BUGS
-====
-
-This program::
-
- 10 FILE=1:INPUT #FILE,LINE$
-
-Results in this::
-
- FILE/80: 10=AI (1)
- LINE$/81: 10=AI (1)
- 2 variables, 0 unreferenced.
-
-**vxrefbas** thinks *FILE* is being *INPUT* on line 10, which it isn't.
-The output for *FILE* should read *10=A (1)*.
-
-Also, this program::
-
- 10 DIM A(1):A(0)=10
- 20 DIM B(A(0))
-
-Results in this::
-
- A(/80: 10=AD 20=D (2)
- B(/81: 20=D (1)
- 2 variables, 0 unreferenced.
-
-**vxrefbas** thinks *A(* is being DIMensioned on line 20, which it isn't. The
-output for *A(* should read *10=AD 20 (2)*.
-
EXIT STATUS
===========