comparison python/ppci/core/instruction.py @ 99:6efbeb903777

movage
author windel
date Mon, 24 Dec 2012 15:03:30 +0100
parents 4a37d6992bd3
children ed230e947dc6
comparison
equal deleted inserted replaced
98:3f772feb12ef 99:6efbeb903777
1
1 from .value import Value 2 from .value import Value
2 3
3 class Instruction(Value): 4 class Instruction(Value):
5 """
6 Base class for all instructions.
7 """
4 pass 8 pass
5 9
6 class CallInstruction(Instruction): 10 class CallInstruction(Instruction):
7 pass 11 pass
8 12