comparison 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
comparison
equal deleted inserted replaced
94:1be00bcfaabb 95:4a37d6992bd3
1 from .value import Value
2
3 class Instruction(Value):
4 pass
5
6 class CallInstruction(Instruction):
7 pass
8
9 class BinaryOperator(Instruction):
10 pass
11
12 class LoadInstruction(Instruction):
13 def __init__(self, ptr, name, insertBefore):
14 self.setName(name)
15