1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-01-04 01:30:18 +00:00

Renamed DEC A to DEA

Signed-off-by: Mike Naberezny <mike@naberezny.com>
This commit is contained in:
Oscar Lindberg 2009-04-13 06:07:27 +08:00 committed by Mike Naberezny
parent 1f3c93b093
commit a8d6b0e166

View File

@ -237,7 +237,7 @@ class MPU(mpu6502.MPU):
self.opTRB(self.AbsoluteAddr)
self.pc += 2
@instruction(name="DEC", mode="imp", cycles=2)
@instruction(name="DEA", mode="imp", cycles=2)
def inst_0x3a(self):
tbyte = self.a
self.flags &= ~(self.ZERO + self.NEGATIVE)