jmriesen / rust-RSM

Educational/portfolio project where I rewrite the Reference Standard M interpreter in rust.
0 stars 0 forks source link

Handle newing variables #26

Closed jmriesen closed 1 month ago

jmriesen commented 1 month ago

add support to the symbol table to new variables.

jmriesen commented 1 month ago

This should be reflexively straight forward, as it should only require adding a stack to the table that stores overwritten variable data. However I am delaying this since adding and removing from the stack equivalent on the C cide is tied to do and goto commands, and I don't think I want to deal with detangleing that quite yet.