Trivial pep8 fix.
Cat's Eye Technologies
10 years ago
189 | 189 | # closing bracket is just sugar which may be omitted or included |
190 | 190 | # without changing the meaning (only the opening bracket counts!) |
191 | 191 | m = re.match(r'^\s*MOV\s+R(\[R)?(\d+)\]?\s*,\s*R(\[R)?(\d+)\]?' |
192 | '\s*(\;.*)?$', line, re.IGNORECASE) | |
192 | r'\s*(\;.*)?$', line, re.IGNORECASE) | |
193 | 193 | if m is not None: |
194 | 194 | (dest_ind, dest_reg, src_ind, src_reg) = m.group(1, 2, 3, 4) |
195 | 195 | if dest_ind == '[R': |