From 256da43fe59d8cfd1c00aaf40b2bcade888bf6aa Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 20 May 2022 20:47:54 -0400 Subject: [PATCH] Fix MOVEM other than postinc and predec. --- .../Clock SignalTests/68000ComparativeTests.mm | 2 +- .../Implementation/68000Mk2Implementation.hpp | 15 ++++++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm index 66d00a146..eac92112b 100644 --- a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm @@ -176,7 +176,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { @"ext.json", @"swap.json", ]]; // 16/32 = 50 % done, as far as the tests go. - _testSet = [NSSet setWithArray:@[@"MOVEM 006f (2)"]]; +// _testSet = [NSSet setWithArray:@[@"MOVEM 00fa (13)"]]; } - (void)testAll { diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 3de18bb32..55a2d48c6 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -1540,13 +1540,11 @@ void Processor R // BeginState(MOVEMtoR): - Prefetch(); // np post_ea_state_ = (instruction_.operation == InstructionSet::M68k::Operation::MOVEMtoRl) ? MOVEMtoR_l_read : MOVEMtoR_w_read; next_operand_ = 1; register_index_ = 0; - register_delta_ = 1; SetDataAddress(effective_address_[1]); SetupDataAccess(Microcycle::Read, Microcycle::SelectWord); @@ -1561,7 +1559,7 @@ void Processor>= 1; - register_index_ += register_delta_; + ++register_index_; } Access(registers_[register_index_].low); registers_[register_index_].l = uint32_t(int16_t(registers_[register_index_].w)); @@ -1569,7 +1567,7 @@ void Processor>= 1; - register_index_ += register_delta_; + ++register_index_; MoveToState(MOVEMtoR_w_read); BeginState(MOVEMtoR_l_read): @@ -1581,16 +1579,16 @@ void Processor>= 1; - register_index_ += register_delta_; + ++register_index_; } - Access(registers_[register_index_].low); - effective_address_[1] += 2; Access(registers_[register_index_].high); effective_address_[1] += 2; + Access(registers_[register_index_].low); + effective_address_[1] += 2; // Drop the bottom bit. operand_[0].w >>= 1; - register_index_ += register_delta_; + ++register_index_; MoveToState(MOVEMtoR_l_read); BeginState(MOVEMtoR_finish): @@ -1604,7 +1602,6 @@ void Processor M // BeginState(MOVEMtoM): - Prefetch(); // np post_ea_state_ = (instruction_.operation == InstructionSet::M68k::Operation::MOVEMtoMl) ? MOVEMtoM_l_write : MOVEMtoM_w_write;