mirror of
https://github.com/jtauber/applepy.git
synced 2024-11-22 19:30:54 +00:00
fixed error in BVS
This commit is contained in:
parent
36355def33
commit
c101868549
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user