comparison python/ppci/target/__init__.py @ 342:86b02c98a717 devel

Moved target directory
author Windel Bouwman
date Sat, 01 Mar 2014 15:40:31 +0100
parents python/target/__init__.py@44f336460c2a
children 3bb7dcfe5529
comparison
equal deleted inserted replaced
341:4d204f6f7d4e 342:86b02c98a717
1 #!/usr/bin/env python
2
3 from .basetarget import Nop, Instruction, Label, Target, Comment, Alignment
4 from .basetarget import Imm32, DebugInfo
5
6
7 class SimpleTarget(Target):
8 def __init__(self):
9 super().__init__('SimpleTarget')