fixed error in BVS

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

View File

@ -520,7 +520,7 @@ class CPU:
self.program_counter = operand_address
def BVS(self, operand_address):
if not self.overflow_flag:
if self.overflow_flag:
self.program_counter = operand_address
# SET / CLEAR FLAGS