whitespace nit

This commit is contained in:
James Tauber 2011-08-07 00:37:49 -04:00
parent f521fba883
commit 36355def33
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ class CPU:
m = self.memory.read_byte(operand_address) << 1
if self.carry_flag:
m = m | 0x01
self.memory.write_byte(operand_address,self.update_nzc(m))
self.memory.write_byte(operand_address, self.update_nzc(m))
def ROR(self, operand_address=None):
if operand_address is None: