Deprecate DEF-less definitions (#1193)

This commit is contained in:
Rangi
2023-11-02 05:18:59 -04:00
committed by GitHub
parent 02f06407b1
commit bb7c34db65
79 changed files with 351 additions and 264 deletions

View File

@@ -1,14 +1,14 @@
V = 0
V = 1
def V = 0
def V = 1
PRINTLN "V={V}"
W equ 1
W = 0
def W equ 1
def W = 0
rsset 1
X rb 0
X = 0
def X rb 0
def X = 0
SECTION "Test", ROM0[1]
Y:
Y = 0
def Y = 0