Fix incorrect test for 65c02 STZ

This commit is contained in:
Patrick Surry 2023-09-12 07:43:11 -04:00
parent a77dc76f0e
commit 0ef2a864ef
1 changed files with 2 additions and 2 deletions

View File

@ -501,8 +501,8 @@ class AssemblerTests(unittest.TestCase):
def test_assembles_64_65c02(self):
mpu = MPU65C02()
self.assertEqual([0x64],
self.assemble('STZ', 0x0000, mpu))
self.assertEqual([0x64, 0x12],
self.assemble('STZ $12', 0x0000, mpu))
def test_assembles_65(self):
self.assertEqual([0x65, 0x44],