comparison test/testmsp430asm.py @ 334:6f4753202b9a

Added more recipes
author Windel Bouwman
date Thu, 13 Feb 2014 22:02:08 +0100
parents 44f336460c2a
children 582a1aaa3983
comparison
equal deleted inserted replaced
333:dcae6574c974 334:6f4753202b9a
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 import unittest 3 import unittest
4 from asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber 4 from ppci.asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber
5 from asm import tokenize, Assembler 5 from ppci.assembler import tokenize, Assembler
6 import outstream 6 import outstream
7 from target import Label 7 from target import Label
8 from target.target_list import msp430target 8 from target.target_list import msp430target
9 from testasm import AsmTestCaseBase 9 from testasm import AsmTestCaseBase
10 10