summaryrefslogtreecommitdiff
path: root/disasm.py
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-05-02 23:16:30 +0100
committerubq323 <ubq323@ubq323.website>2024-05-02 23:16:30 +0100
commita71e6c729761d07c7bf189c057951440d1fe251f (patch)
tree9b4c6e02cc4997357e944a7bf6ca4f7d2ce8c5b6 /disasm.py
parent20ddcf5e3733677b695d50d86d65c8de5b386e60 (diff)
more things
Diffstat (limited to 'disasm.py')
-rwxr-xr-xdisasm.py29
1 files changed, 2 insertions, 27 deletions
diff --git a/disasm.py b/disasm.py
index 3ba5c2f..693393b 100755
--- a/disasm.py
+++ b/disasm.py
@@ -1,33 +1,8 @@
#!/usr/bin/env python3
import sys
-mnems = """
-nop
-rot
-nrt
-dup
-swp
-ovr
-drp
-tck
-nip
-equ
-neq
-add
-sub
-mul
-div
-neg
-slt
-ult
-sle
-ule
-lod
-sto
-psh
-pop
-""".split()
-mnems.extend(['???']*(64-len(mnems)))
+from mnems import mnems
+
def opws(kw):
for k in range(16):
mnems.append(kw + str(k))