1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-13 22:29:30 +00:00

Remove unused addressing mode helper

This commit is contained in:
Mike Naberezny 2014-01-25 21:04:05 -08:00
parent f664f312c8
commit c40fde4c96

View File

@ -35,9 +35,6 @@ class MPU(mpu6502.MPU):
def IndirectAbsXAddr(self):
return self.addrMask & (self.WordAt(self.pc) + self.x)
def AccumulatorAddr(self):
return self.a
# operations
def opRMB(self, x, mask):