mirror of
https://github.com/irmen/prog8.git
synced 2025-11-24 06:17:39 +00:00
fix 6502 inplace pointer variable assignment
This commit is contained in:
@@ -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++
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user