Implemented loads with register offsets

This commit is contained in:
2025-02-19 15:36:42 +01:00
parent 4cff697bf5
commit 1bc845e6f0
13 changed files with 320 additions and 145 deletions

View File

@ -0,0 +1,20 @@
import mem
main() {
a := mem.alloc(4)
assert a[0] == 0
assert a[1] == 0
assert a[2] == 0
assert a[3] == 0
a[0] = 0
a[1] = 1
a[2] = 2
a[3] = 3
assert a[0] == 0
assert a[1] == 1
assert a[2] == 2
assert a[3] == 3
}