1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-07-12 17:29:24 +00:00

Removed duplicated instruction definitions

Signed-off-by: Mike Naberezny <mike@naberezny.com>
This commit is contained in:
offe 2009-04-09 20:40:13 +08:00 committed by Mike Naberezny
parent 49fdcdfa9e
commit c56b8590aa

View File

@ -127,16 +127,6 @@ class MPU(NMOS6502):
self.opTSB(self.AbsoluteAddr)
self.pc += 2
@instruction(name="TSB", mode="zpg", cycles=5)
def inst_0x04(self):
self.opTSB(self.ZeroPageAddr)
self.pc += 1
@instruction(name="TSB", mode="abs", cycles=6)
def inst_0x0c(self):
self.opTSB(self.AbsoluteAddr)
self.pc += 2
@instruction(name="TRB", mode="zpg", cycles=5)
def inst_0x14(self):
self.opTRB(self.ZeroPageAddr)