From a8d6b0e166e100d50f5cc418a6fe65876e2174c7 Mon Sep 17 00:00:00 2001 From: Oscar Lindberg Date: Mon, 13 Apr 2009 06:07:27 +0800 Subject: [PATCH] Renamed DEC A to DEA Signed-off-by: Mike Naberezny --- src/py65/devices/mpu65c02.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py65/devices/mpu65c02.py b/src/py65/devices/mpu65c02.py index d3b8d76..6576ad0 100644 --- a/src/py65/devices/mpu65c02.py +++ b/src/py65/devices/mpu65c02.py @@ -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)