annotate test/testmsp430asm.py @ 299:674789d9ff37

Added a doc
author Windel Bouwman
date Sun, 01 Dec 2013 18:37:23 +0100
parents 534b94b40aa8
children 44f336460c2a
rev   line source
290
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
1 #!/usr/bin/python
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
2
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
3 import unittest
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
4 from asmnodes import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
5 from asm import tokenize, Assembler
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
6 import outstream
292
534b94b40aa8 Fixup reorganize
Windel Bouwman
parents: 290
diff changeset
7 from target import Label, msp430target
290
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
8 from testasm import AsmTestCaseBase
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
9
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
10
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
11 class AssemblerMSP430TestCase(AsmTestCaseBase):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
12 def setUp(self):
292
534b94b40aa8 Fixup reorganize
Windel Bouwman
parents: 290
diff changeset
13 self.t = msp430target
290
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
14 self.o = outstream.BinOutputStream()
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
15 self.o.selectSection('.text')
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
16 self.a = Assembler(target=self.t, stream=self.o)
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
17
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
18 def testMapMovInstruction(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
19 i = AInstruction('mov', [ASymbol('r14'), ASymbol('r15')])
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
20 ri = self.t.mapInstruction(i)
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
21
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
22 def testMapRetiInstruction(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
23 i = AInstruction('reti', [])
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
24 ri = self.t.mapInstruction(i)
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
25
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
26 def testMov(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
27 self.feed("mov r14, r15")
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
28 self.check('0F4E')
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
29
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
30 def testMov1337(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
31 self.feed("mov 0x1337, r12")
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
32 self.check('3C403713')
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
33
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
34 def testAdd(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
35 self.feed("add r15, r13")
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
36 self.check('0D5F')
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
37
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
38 def testReti(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
39 self.feed("reti")
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
40 self.check('0013')
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
41
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
42 def testMSPinstructionCount(self):
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
43 """ Check that there are 27 instructions """
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
44 self.assertEqual(27, len(self.t.instructions))
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
45
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
46
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
47 if __name__ == '__main__':
7b38782ed496 File moves
Windel Bouwman
parents:
diff changeset
48 unittest.main()