Mercurial > lcfOS
view python/ppci/target/target_list.py @ 386:2a970e7270e2
Added repeat assembler macro
author | Windel Bouwman |
---|---|
date | Thu, 01 May 2014 17:40:59 +0200 |
parents | 39bf68bf1891 |
children | c0d9837acde8 |
line wrap: on
line source
from .arm import ArmTarget from .thumb import ThumbTarget from .msp430.msp430 import msp430target # Instance: arm_target = ArmTarget() thumb_target = ThumbTarget() target_list = [arm_target, thumb_target] targets = {t.name: t for t in target_list} targetnames = list(targets.keys())