From 311b79e00f2f11c987da1e142a901407fa43c88a Mon Sep 17 00:00:00 2001 From: anon Date: Mon, 22 Jul 2024 19:39:19 +0200 Subject: [PATCH] Added 'Misc./rasterpython_eremias++/instructions.tcl' --- Misc./rasterpython_eremias++/instructions.tcl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Misc./rasterpython_eremias++/instructions.tcl diff --git a/Misc./rasterpython_eremias++/instructions.tcl b/Misc./rasterpython_eremias++/instructions.tcl new file mode 100644 index 0000000..27beaad --- /dev/null +++ b/Misc./rasterpython_eremias++/instructions.tcl @@ -0,0 +1,18 @@ +set instructions { + {syscall} + {sysret} + {sysexit} + {sysenter} + {leave} + {retf} + {retn} + {pause} + {hlt} + {lock} +} + + # {mov register immediate} + +proc malformed_instruction {i} { + error [format "Instruction {%s} is malformed" [join $i ", "]] +}