This commit is contained in:
Brendan Robert 2024-02-15 15:48:40 -06:00
parent c049a43d68
commit 59f43836fb
2 changed files with 59996 additions and 80349 deletions

File diff suppressed because one or more lines are too long

View File

@ -170,7 +170,6 @@ public class Full65C02Test {
.assertA(0x00) .assertA(0x00)
.assertFlags(IS_ZERO, OVERFLOW_CLEAR, CARRY_SET, POSITIVE) .assertFlags(IS_ZERO, OVERFLOW_CLEAR, CARRY_SET, POSITIVE)
// Now check boundary conditions on indexed addressing for timing differences // Now check boundary conditions on indexed addressing for timing differences
.setTrace(true)
.add("LDX #$FF") .add("LDX #$FF")
.assertTimed("ADC $10FF,X", 5) .assertTimed("ADC $10FF,X", 5)
.add("LDY #$FF") .add("LDY #$FF")
@ -682,7 +681,6 @@ public class Full65C02Test {
new TestProgram() new TestProgram()
// Zero and Negative flags // Zero and Negative flags
.add("LDA #0") .add("LDA #0")
.setTrace(true)
.assertTimed("BEQ *+2",3) .assertTimed("BEQ *+2",3)
.assertTimed("BNE *+2",2) .assertTimed("BNE *+2",2)
.assertTimed("BPL *+2",3) .assertTimed("BPL *+2",3)
@ -791,7 +789,6 @@ public class Full65C02Test {
.test("", "RTS did not return to the correct address") .test("", "RTS did not return to the correct address")
.add(""" .add("""
start start
+traceOn
jsr test jsr test
ret ret
""") """)