view python/target/__init__.py @ 339:6ee17c4dd6b8

Increase timeout
author Windel Bouwman
date Fri, 21 Feb 2014 13:35:07 +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')