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

movage
author windel
date Mon, 24 Dec 2012 15:03:30 +0100
parents 4a37d6992bd3
children ed230e947dc6
line wrap: on
line diff
--- a/python/ppci/core/instruction.py	Mon Dec 24 13:57:00 2012 +0100
+++ b/python/ppci/core/instruction.py	Mon Dec 24 15:03:30 2012 +0100
@@ -1,6 +1,10 @@
+
 from .value import Value
 
 class Instruction(Value):
+   """
+      Base class for all instructions.
+   """
    pass
 
 class CallInstruction(Instruction):