diff python/ppci/core/instruction.py @ 95:4a37d6992bd3

movage
author windel
date Mon, 24 Dec 2012 13:24:59 +0100
parents python/libs/compiler/core/instruction.py@5351594349b0
children 6efbeb903777
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python/ppci/core/instruction.py	Mon Dec 24 13:24:59 2012 +0100
@@ -0,0 +1,15 @@
+from .value import Value
+
+class Instruction(Value):
+   pass
+
+class CallInstruction(Instruction):
+   pass
+
+class BinaryOperator(Instruction):
+   pass
+
+class LoadInstruction(Instruction):
+   def __init__(self, ptr, name, insertBefore):
+      self.setName(name)
+