comparison python/ppci/target/target_list.py @ 347:742588fb8cd6 devel

Merge into devel branch
author Windel Bouwman
date Fri, 07 Mar 2014 17:10:21 +0100
parents b4882ff0ed06
children 39bf68bf1891
comparison
equal deleted inserted replaced
343:11c5a8a70c02 347:742588fb8cd6
1 1
2 from .arm import ArmArmTarget 2 from .arm import ArmTarget
3 from .thumb import ThumbTarget 3 from .thumb import ThumbTarget
4 from .msp430.msp430 import msp430target 4 from .msp430.msp430 import msp430target
5 5
6 # Instance: 6 # Instance:
7 arm_target = ArmArmTarget() 7 arm_target = ArmTarget()
8 thumb_target = ThumbTarget() 8 thumb_target = ThumbTarget()
9 9
10 target_list = [arm_target, thumb_target] 10 target_list = [arm_target, thumb_target]