annotate python/ppci/target/target_list.py @ 367:577ed7fb3fe4

Try to make thumb work again
author Windel Bouwman
date Fri, 21 Mar 2014 10:27:57 +0100
parents 39bf68bf1891
children c0d9837acde8
rev   line source
322
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
1
345
b4882ff0ed06 Added more arm isa tests
Windel Bouwman
parents: 342
diff changeset
2 from .arm import ArmTarget
342
86b02c98a717 Moved target directory
Windel Bouwman
parents: 341
diff changeset
3 from .thumb import ThumbTarget
86b02c98a717 Moved target directory
Windel Bouwman
parents: 341
diff changeset
4 from .msp430.msp430 import msp430target
322
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
5
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
6 # Instance:
345
b4882ff0ed06 Added more arm isa tests
Windel Bouwman
parents: 342
diff changeset
7 arm_target = ArmTarget()
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 322
diff changeset
8 thumb_target = ThumbTarget()
322
44f336460c2a Half of use of burg spec for arm
Windel Bouwman
parents:
diff changeset
9
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 322
diff changeset
10 target_list = [arm_target, thumb_target]
366
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 345
diff changeset
11 targets = {t.name: t for t in target_list}
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 345
diff changeset
12 targetnames = list(targets.keys())