comparison python/target/msp430.py @ 292:534b94b40aa8

Fixup reorganize
author Windel Bouwman
date Wed, 27 Nov 2013 08:06:42 +0100
parents 7b38782ed496
children 6f4753202b9a
comparison
equal deleted inserted replaced
290:7b38782ed496 292:534b94b40aa8
1 from target import Register, Instruction, Target 1 from .basetarget import Register, Instruction, Target
2 from asmnodes import ASymbol, ANumber 2 from asmnodes import ASymbol, ANumber
3 from ppci import CompilerError 3 from ppci import CompilerError
4 import struct 4 import struct
5 import types 5 import types
6 6
243 twoOpIns('bit', 11) 243 twoOpIns('bit', 11)
244 twoOpIns('bic', 12) 244 twoOpIns('bic', 12)
245 twoOpIns('bis', 13) 245 twoOpIns('bis', 13)
246 twoOpIns('xor', 14) 246 twoOpIns('xor', 14)
247 twoOpIns('and', 15) 247 twoOpIns('and', 15)
248