--HG--
branch : pmacs2
This commit is contained in:
~d6 2022-03-24 22:41:46 -04:00
commit 225a6ab3e2
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class Taldoc(Method):
'AND': ['And', [['a', 'b'], ['a&b']], None, 'bitwise-and (a & b)'],
'ORA': ['Or', [['a', 'b'], ['a|b']], None, 'bitwise-or (a | b)'],
'EOR': ['Exclusive Or', [['a', 'b'], ['a^b']], None, 'bitwise-xor (a ^ b)'],
'SFT': ['Shift', [['a', 'b^'], ['c']], None, 'bitshift left (b >> 4) then right (b & 0xf)'],
'SFT': ['Shift', [['a', 'b^'], ['c']], None, 'bitshift right (b & 0x0f) then left (b >> 4)'],
}
inst_re = re.compile(r'^([A-Z]{3})(2?k?r?)$')
addr_dict = {