fix 6502 inplace pointer variable assignment

This commit is contained in:
Irmen de Jong
2025-08-14 20:38:18 +02:00
parent fd9bd23449
commit e800c165f9
5 changed files with 30 additions and 21 deletions

View File

@@ -1,14 +1,9 @@
main {
sub start() {
label:
uword @shared addr
addr = label
addr = thing
addr = &label
addr = &thing
console_write("sdf")
}
sub thing() {
sub console_write(^^ubyte isoString) {
isoString++
}
}