Mercurial > lcfOS
view python/target/__init__.py @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | 534b94b40aa8 |
children | 6753763d3bec |
line wrap: on
line source
#!/usr/bin/env python from .basetarget import Nop, Instruction, Label, Target, Comment, Alignment from .basetarget import Imm32, DebugInfo from .armtarget import ArmTarget from .armframe import ArmFrame from .arminstructionselector import ArmInstructionSelector from .msp430 import msp430target # Instance: armtarget = ArmTarget() armtarget.ins_sel = ArmInstructionSelector() armtarget.FrameClass = ArmFrame #from .msp430target import msp430target target_list = [armtarget]