Deprecate treating strings as numbers (#1780)

This commit is contained in:
Rangi
2025-08-06 10:13:22 -04:00
committed by GitHub
parent 34d99b273c
commit a4a830776b
14 changed files with 34 additions and 9 deletions

View File

@@ -8,6 +8,6 @@ SECTION "Test", ROM0
dw 0, "DEF", -1
dl 0, "DEF", -1
db "A" + 1
dw "A" + 1
dl "A" + 1
db 'A' + 1
dw 'A' + 1
dl 'A' + 1