view python/ppci/target/target_list.py @ 397:5d03c10fe19d

Small changes
author Windel Bouwman
date Thu, 29 May 2014 10:47:28 +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())