Built-in symbols are "<builtin>", not "<command-line>" (#1362)

This commit is contained in:
Sylvie
2024-03-19 16:01:45 -04:00
committed by GitHub
parent fec2266dd8
commit 554778da5b
7 changed files with 103 additions and 84 deletions

26
test/asm/rs-overwrite.asm Normal file
View File

@@ -0,0 +1,26 @@
PURGE _RS
PRINTLN _RS
DEF _RS EQU 1
PRINTLN _RS
DEF _RS = 2 ; this works
PRINTLN _RS
DEF _RS EQUS "3"
PRINTLN _RS
REDEF _RS = 4 ; this works
PRINTLN _RS
REDEF _RS EQU 5
PRINTLN _RS
REDEF _RS EQUS "6"
PRINTLN _RS
RSSET 7 ; this works
PRINTLN _RS
RSRESET
PRINTLN _RS