frroossst / py_mips_debugger

A minimal MIPS python interpreter that allows for easy debugging and improved developer workflow
https://frroossst.github.io/py_mips_debugger/
GNU General Public License v3.0
0 stars 0 forks source link

Add ability to allow dropdown execution #27

Closed frroossst closed 1 year ago

frroossst commented 1 year ago

Most 215 assignment make heavy use of dropdown execution and control flow, add a toggle/ config to enable this. Shouldn't be too hard to implement

frroossst commented 1 year ago

Impl a PC, that updates with each instruction, on a EndOfInstruction increment PC by 4 and execute that label, this is pretty much the same as the above, but with an added Program Counter layer in between which'll allow for increased extensibility in the future

frroossst commented 1 year ago

In theory should just read the toml file and execute a dropdown here