summaryrefslogtreecommitdiff
path: root/pysc-v/InstructionSets/instructions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysc-v/InstructionSets/instructions.py')
-rw-r--r--pysc-v/InstructionSets/instructions.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/pysc-v/InstructionSets/instructions.py b/pysc-v/InstructionSets/instructions.py
new file mode 100644
index 0000000..5587f2e
--- /dev/null
+++ b/pysc-v/InstructionSets/instructions.py
@@ -0,0 +1,30 @@
+from ctypes import c_uint32
+
+
+class Instruction:
+ size = 4 # Instruction size in bytes
+
+ def __init__(self):
+ pass
+
+ def compile(self):
+ # return the binstream of the instruction in a c_uint32
+ pass
+
+ def execute(self):
+ # executes the instruction and returns the next program counter
+ return
+
+class InstructionSet:
+ def __init__(self, init=None):
+ self.data = dict()
+
+ def add_instruction(self, ins):
+ if ins.name not in self.data:
+ self.data[ins.name] = ins
+
+
+if __name__ == "__main__":
+ # TODO This is the interface i'd love to have
+ addins = add("x5","x2","zero")
+ j("labelName")