v6.0.0-dev #269

Merged
meggert merged 56 commits from v6.0.0-dev into main 2024-02-06 10:28:29 +01:00
Showing only changes of commit 202a824d31 - Show all commits

View File

@ -59,7 +59,7 @@ def create_scex_node() -> CmdTreeNode:
]
info_strs = [getattr(Info, key) for key in dir(OpCode) if not key.startswith("__")]
combined_dict = dict(zip(op_code_strs, info_strs))
scex_node = CmdTreeNode("ploc_mpsoc", "PLOC MPSoC")
scex_node = CmdTreeNode("scex", "Solar Cell Experiment")
for op_code, info in combined_dict.items():
scex_node.add_child(CmdTreeNode(op_code, info))
return scex_node