From c8055d65c38bc1469ebf5c1206d36fa82dd40181 Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:00:14 +0100 Subject: [PATCH] Remove "unfixed page" output --- M6502/M6502.HarteTest/Checker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/M6502/M6502.HarteTest/Checker.cs b/M6502/M6502.HarteTest/Checker.cs index bdf8141..ac78b70 100644 --- a/M6502/M6502.HarteTest/Checker.cs +++ b/M6502/M6502.HarteTest/Checker.cs @@ -72,7 +72,7 @@ throw new InvalidOperationException("test cycles cannot be null"); } - this.Messages.Add($"Unfixed page: {cpu.UnfixedPage:X2}, fixed page is: {cpu.FixedPage:X2}"); + this.Messages.Add($"Fixed page is: {cpu.FixedPage:X2}"); this.Messages.Add($"Stepped cycles: {this.Cycles}, expected events: {test.Cycles.Count}, actual events: {this.ActualCycles.Count}");