view 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 source

#!/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')