comparison python/ppci/target/target_list.py @ 342:86b02c98a717 devel

Moved target directory
author Windel Bouwman
date Sat, 01 Mar 2014 15:40:31 +0100
parents python/target/target_list.py@4d204f6f7d4e
children b4882ff0ed06
comparison
equal deleted inserted replaced
341:4d204f6f7d4e 342:86b02c98a717
1
2 from .arm import ArmArmTarget
3 from .thumb import ThumbTarget
4 from .msp430.msp430 import msp430target
5
6 # Instance:
7 arm_target = ArmArmTarget()
8 thumb_target = ThumbTarget()
9
10 target_list = [arm_target, thumb_target]