mirror of
https://github.com/mnaberez/py65.git
synced 2025-04-06 04:41:09 +00:00
bugfix: sbc calculation for 16-bit
This commit is contained in:
parent
c437d3ee3f
commit
3b70e8f495
@ -437,7 +437,7 @@ class MPU:
|
||||
data = result & self.byteMask
|
||||
if data == 0:
|
||||
self.p |= self.ZERO
|
||||
if result & 0x100:
|
||||
if result > self.byteMask:
|
||||
self.p |= self.CARRY
|
||||
self.p |= data & self.NEGATIVE
|
||||
self.a = data
|
||||
|
Loading…
x
Reference in New Issue
Block a user