annotate python/ppci/target/__init__.py @ 345:b4882ff0ed06

Added more arm isa tests
author Windel Bouwman
date Sun, 02 Mar 2014 17:12:08 +0100
parents 86b02c98a717
children 3bb7dcfe5529
rev   line source
290
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
1 #!/usr/bin/env python
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
2
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
3 from .basetarget import Nop, Instruction, Label, Target, Comment, Alignment
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
4 from .basetarget import Imm32, DebugInfo
292
534b94b40aa8 Fixup reorganize
Windel Bouwman
parents: 290
diff changeset
5
301
6753763d3bec merge codegen into ppci package
Windel Bouwman
parents: 292
diff changeset
6
6753763d3bec merge codegen into ppci package
Windel Bouwman
parents: 292
diff changeset
7 class SimpleTarget(Target):
6753763d3bec merge codegen into ppci package
Windel Bouwman
parents: 292
diff changeset
8 def __init__(self):
6753763d3bec merge codegen into ppci package
Windel Bouwman
parents: 292
diff changeset
9 super().__init__('SimpleTarget')