view python/ppci/target/target_list.py @ 344:1378c4b027a0

Merge devel branch
author Windel Bouwman
date Sat, 01 Mar 2014 16:32:27 +0100
parents 86b02c98a717
children b4882ff0ed06
line wrap: on
line source


from .arm import ArmArmTarget
from .thumb import ThumbTarget
from .msp430.msp430 import msp430target

# Instance:
arm_target = ArmArmTarget()
thumb_target = ThumbTarget()

target_list = [arm_target, thumb_target]