annotate python/target/target_list.py @ 322:44f336460c2a

Half of use of burg spec for arm
author Windel Bouwman
date Mon, 27 Jan 2014 19:58:07 +0100
parents
children 4d204f6f7d4e
rev   line source
322
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
1
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
2 from .armtarget import ArmTarget
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
3 from .msp430 import msp430target
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
4
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
5 # Instance:
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
6 armtarget = ArmTarget()
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
7
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
8 target_list = [armtarget]