view python/target/__init__.py @ 327:61c9df5bffce

Changed emulated board to cortex a8 board
author Windel Bouwman
date Sat, 01 Feb 2014 17:21:21 +0100
parents 44f336460c2a
children
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')