1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 23:29:06 +00:00

Corrects JR cc tests.

This commit is contained in:
Thomas Harte 2020-02-24 23:36:05 -05:00
parent 3097c4ccae
commit e4887c0c56

View File

@ -421,14 +421,14 @@ class Z80MemptrTester: XCTestCase {
machine.setValue(0x00, for: .AF)
testJR(instruction: 0x28)
machine.setValue(0x01, for: .AF)
machine.setValue(0xff, for: .AF)
testJR(instruction: 0x28)
// JR C
machine.setValue(0x00, for: .AF)
testJR(instruction: 0x38)
machine.setValue(0x01, for: .AF)
machine.setValue(0xff, for: .AF)
testJR(instruction: 0x38)
}