diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python/ppci/target/target_list.py	Sat Mar 01 15:40:31 2014 +0100
@@ -0,0 +1,10 @@
+
+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]