From 02af08ffd24e24d72fb62e427381b6b8aaf55205 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 30 Oct 2023 12:32:44 -0400 Subject: [PATCH] Fix counts. --- OSBindings/Mac/Clock SignalTests/8088Tests.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/8088Tests.mm b/OSBindings/Mac/Clock SignalTests/8088Tests.mm index 203a1ee9f..fc70d4639 100644 --- a/OSBindings/Mac/Clock SignalTests/8088Tests.mm +++ b/OSBindings/Mac/Clock SignalTests/8088Tests.mm @@ -25,7 +25,7 @@ namespace { // The tests themselves are not duplicated in this repository; // provide their real path here. -constexpr char TestSuiteHome[] = "/Users/thomasharte/Projects/ProcessorTests/8088/v1"; +constexpr char TestSuiteHome[] = "/Users/tharte/Projects/ProcessorTests/8088/v1"; using Status = InstructionSet::x86::Status; struct Registers { @@ -668,7 +668,7 @@ struct FailedExecution { XCTAssertLessThanOrEqual(execution_failures.size(), 4138); // Current accepted failures: - // * 68 instances of DAA with invalid BCD input, and 64 of DAS; + // * 65 instances of DAA with invalid BCD input, and 64 of DAS; // * 2484 instances of LEA from a register, which officially has undefined results; // * 42 instances of AAM 00h for which I can't figure out what to do with flags; and // * 1486 instances of IDIV, most either with a rep or repne that on the 8086 specifically negatives the result,