view python/target/__init__.py @ 322:44f336460c2a

Half of use of burg spec for arm
author Windel Bouwman
date Mon, 27 Jan 2014 19:58:07 +0100
parents 6753763d3bec
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')