Mercurial > lcfOS
diff test/testmsp430asm.py @ 292:534b94b40aa8
Fixup reorganize
author | Windel Bouwman |
---|---|
date | Wed, 27 Nov 2013 08:06:42 +0100 |
parents | 7b38782ed496 |
children | 44f336460c2a |
line wrap: on
line diff
--- a/test/testmsp430asm.py Sun Nov 24 11:24:15 2013 +0100 +++ b/test/testmsp430asm.py Wed Nov 27 08:06:42 2013 +0100 @@ -3,15 +3,14 @@ import unittest from asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber from asm import tokenize, Assembler -import msp430 import outstream -from target import Label +from target import Label, msp430target from testasm import AsmTestCaseBase class AssemblerMSP430TestCase(AsmTestCaseBase): def setUp(self): - self.t = msp430.msp430target + self.t = msp430target self.o = outstream.BinOutputStream() self.o.selectSection('.text') self.a = Assembler(target=self.t, stream=self.o)