Mercurial > lcfOS
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/ppci/target/__init__.py Sat Mar 01 15:40:31 2014 +0100 @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +from .basetarget import Nop, Instruction, Label, Target, Comment, Alignment +from .basetarget import Imm32, DebugInfo + + +class SimpleTarget(Target): + def __init__(self): + super().__init__('SimpleTarget')