From 59bc652a48fa25bfc5be34d52f9d9b0c8f0b1289 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Wed, 8 Apr 2009 18:28:37 -0700 Subject: [PATCH] Fixed comment. --- src/py65/tests/devices/test_mpu6502.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py65/tests/devices/test_mpu6502.py b/src/py65/tests/devices/test_mpu6502.py index 62e8a2d..ae54519 100644 --- a/src/py65/tests/devices/test_mpu6502.py +++ b/src/py65/tests/devices/test_mpu6502.py @@ -2815,7 +2815,7 @@ class Common6502Tests: mpu.flags &= ~(mpu.NEGATIVE) mpu.a = 0x03 mpu.x = 0x03 - self._write(mpu.memory, 0x0000, (0x01, 0x10)) #=> ORA ($ABCD,X) + self._write(mpu.memory, 0x0000, (0x01, 0x10)) #=> ORA ($0010,X) self._write(mpu.memory, 0x0013, (0xCD, 0xAB)) #=> Vector to $ABCD mpu.memory[0xABCD] = 0x82 mpu.step()