From d4d644d56015a6330100e0b9d59c8a3742bc95bb Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Wed, 22 Jan 2014 19:57:47 -0800 Subject: [PATCH] Fix disassembly and remove unused register --- py65/tests/devices/test_mpu6502.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/py65/tests/devices/test_mpu6502.py b/py65/tests/devices/test_mpu6502.py index 740fa00..6a3ba94 100644 --- a/py65/tests/devices/test_mpu6502.py +++ b/py65/tests/devices/test_mpu6502.py @@ -5664,9 +5664,8 @@ class Common6502Tests: def test_indirect_wrap(self): mpu = self._make_mpu() - mpu.x = 0xff mpu.memory[0x00ff] = 0 - # $0000 LDA ($00,X) + # $0000 JMP ($00) self._write(mpu.memory, 0, (0x6c, 0xff, 0x00)) mpu.step() self.assertEqual(0x6c00, mpu.pc)