diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 58c2eee4f..429cbb9fa 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -164,6 +164,7 @@ enum ExecutionState: int { DIVU_DIVS, MULU_MULS, LEA, + PEA, }; // MARK: - The state machine. @@ -707,6 +708,11 @@ void Processor>= 1; @@ -1695,9 +1699,9 @@ void Processor>= 1; @@ -1711,7 +1715,7 @@ void Processor>= 1; @@ -1779,9 +1783,9 @@ void Processor>= 1; @@ -1799,7 +1803,7 @@ void Processor>= 1; --register_index_; } - effective_address_[1] -= 2; + effective_address_[1].l -= 2; Access(registers_[register_index_].low); // Drop the bottom bit. @@ -1819,9 +1823,9 @@ void Processor void movem_toR(Preinstruction, uint32_t, uint32_t) {} void jsr(uint32_t) {} void jmp(uint32_t) {} + inline void pea(uint32_t) {} // Some microcycles that will be modified as required and used in the main loop; // the semantics of a switch statement make in-place declarations awkward and