1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-02-08 01:31:07 +00:00

Fixed comment.

This commit is contained in:
Mike Naberezny 2009-04-08 18:28:37 -07:00
parent 20f6e9605d
commit 59bc652a48

View File

@ -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()