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

Impl a config file #25

Closed frroossst closed 1 year ago

frroossst commented 1 year ago

A simple config file that allows you to run the emulator with pre-defined flags like,

This would most likely be a json or a toml, I am leaning towards toml, because of its simplicity.

frroossst commented 1 year ago

pymips.toml

[features]
memory_mapped = false
end_of_instruction = true

[runner]
entry = "main"
file_to_run = "hello.asm"

[debugger]
breakpoints = []
watchpoints = []