Added 'Misc./rasterpython_eremias++/instructions.tcl'

This commit is contained in:
anon 2024-07-22 19:39:19 +02:00
parent c9c26eb7e9
commit 311b79e00f

View File

@ -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 ", "]]
}