Mercurial > lcfOS
comparison test/testasm.py @ 334:6f4753202b9a
Added more recipes
author | Windel Bouwman |
---|---|
date | Thu, 13 Feb 2014 22:02:08 +0100 |
parents | e84047f29c78 |
children | 582a1aaa3983 |
comparison
equal
deleted
inserted
replaced
333:dcae6574c974 | 334:6f4753202b9a |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 | 2 |
3 import unittest, cProfile | 3 import unittest, cProfile |
4 from ppci import CompilerError | 4 from ppci import CompilerError |
5 from asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber | 5 from ppci.asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber |
6 from asm import tokenize, Assembler | 6 from ppci.assembler import tokenize, Assembler |
7 import outstream | 7 import outstream |
8 from target import Label | 8 from target import Label |
9 | 9 |
10 | 10 |
11 class AssemblerLexingCase(unittest.TestCase): | 11 class AssemblerLexingCase(unittest.TestCase): |