Remove previously deprecated features (#1777)

- Treating multi-unit strings as numbers
- `rgbasm -Wnumeric-string`
- `ldio [c], a` and `ldio a, [c]` (use `ldh`)
- `ld [c], a` and `ld a, [c]` (use `ldh`)
- `ldh [$xx], a` and `ldh a, [$xx]` (use `$FFxx`)
This commit is contained in:
Rangi
2025-08-05 16:24:10 -04:00
committed by GitHub
parent a3983b7b0f
commit 39f0f9edc0
30 changed files with 95 additions and 317 deletions

5
test/asm/invalid-ldh.err Normal file
View File

@@ -0,0 +1,5 @@
error: invalid-ldh.asm(2):
Source address $11 not between $FF00 to $FFFF
error: invalid-ldh.asm(3):
Source address $22 not between $FF00 to $FFFF
Assembly aborted with 2 errors!