diff --git a/cpu.cpp b/cpu.cpp index 89bbc72..5a938ca 100644 --- a/cpu.cpp +++ b/cpu.cpp @@ -2488,7 +2488,6 @@ void cpu::step() b->getMMU()->setMMR2(instruction_start); uint16_t instr = b->read_word(instruction_start); - add_register(7, 2); if (double_operand_instructions(instr)) diff --git a/main.cpp b/main.cpp index a348ebc..babe049 100644 --- a/main.cpp +++ b/main.cpp @@ -164,7 +164,8 @@ int run_cpu_validation(console *const cnsl, const std::string & filename) total_error_count += cur_n_errors; tests_with_error_count += !!cur_n_errors; - + + cnsl->put_string_lf(format("Test result for %d, %s: %s", n_tests, test["id"].as().c_str(), cur_n_errors ? "FAILED":"OK")); // clean-up delete b;