Hello! I love your assembly interpreter. It's pretty cool! But I was looking through the docs and you said
| storei |
r1 |
r2 |
r3 |
mem[r[1] + const] = reg[3] |
which is wrong, because when i was using storei, it intakes
| storei |
r1 |
const |
r3 |
mem[r[1] + const] = reg[3] |
I believe this is just a small mistake. good work though^^