diff test/testmsp430asm.py @ 341:4d204f6f7d4e devel

Rewrite of assembler parts
author Windel Bouwman
date Fri, 28 Feb 2014 18:07:14 +0100
parents 582a1aaa3983
children 86b02c98a717
line wrap: on
line diff
--- a/test/testmsp430asm.py	Sun Feb 23 16:24:01 2014 +0100
+++ b/test/testmsp430asm.py	Fri Feb 28 18:07:14 2014 +0100
@@ -18,14 +18,6 @@
         self.o.selectSection('.text')
         self.a = Assembler(target=self.t, stream=self.o)
 
-    def testMapMovInstruction(self):
-        i = AInstruction('mov', [ASymbol('r14'), ASymbol('r15')])
-        ri = self.t.mapInstruction(i)
-
-    def testMapRetiInstruction(self):
-        i = AInstruction('reti', [])
-        ri = self.t.mapInstruction(i)
-
     def testMov(self):
         self.feed("mov r14, r15")
         self.check('0F4E')