From e0a279344c7c47a275ef0c80ecb7b5c9c09a40d0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 23 May 2022 15:09:46 -0400 Subject: [PATCH] Codify the existence of special cases, implement NOP and RESET. --- Processors/68000Mk2/68000Mk2.hpp | 1 + .../Implementation/68000Mk2Implementation.hpp | 66 +++++++++++++------ .../Implementation/68000Mk2Storage.hpp | 5 +- 3 files changed, 50 insertions(+), 22 deletions(-) diff --git a/Processors/68000Mk2/68000Mk2.hpp b/Processors/68000Mk2/68000Mk2.hpp index 54dcf4979..1590755d1 100644 --- a/Processors/68000Mk2/68000Mk2.hpp +++ b/Processors/68000Mk2/68000Mk2.hpp @@ -121,6 +121,7 @@ struct Microcycle { SlicedInt16 *value = nullptr; Microcycle(OperationT operation) : operation(operation) {} + Microcycle(OperationT operation, HalfCycles length) : operation(operation), length(length) {} Microcycle() {} /// @returns @c true if two Microcycles are equal; @c false otherwise. diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 37e8123b4..53e84857e 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -20,7 +20,7 @@ namespace MC68000Mk2 { // TODO: VPA, BERR, interrupt inputs, etc. // Also, from Instruction.hpp: // -// NOP, MOVEAw, MOVEAl, MOVE[to/from]USP, STOP, RESET +// MOVEAw, MOVEAl, MOVE[to/from]USP, STOP // // Not provided by a 68000: Bccl, BSRl @@ -134,11 +134,11 @@ enum ExecutionState: int { DBcc_condition_true, DBcc_counter_overflow, - Bcc_b, - Bcc_w, + Bccb, + Bccw, Bcc_branch_taken, - Bcc_b_branch_not_taken, - Bcc_w_branch_not_taken, + Bccb_branch_not_taken, + Bccw_branch_not_taken, BSR, @@ -177,8 +177,10 @@ enum ExecutionState: int { RTR, RTE, RTS, - LINK, + LINKw, UNLINK, + RESET, + NOP, }; // MARK: - The state machine. @@ -461,6 +463,8 @@ void Processor void ProcessorBase::complete_bcc(bool take_branch, IntT state_ = (instruction_.operation == InstructionSet::M68k::Operation::Bccb) ? - Bcc_b_branch_not_taken : Bcc_w_branch_not_taken; + Bccb_branch_not_taken : Bccw_branch_not_taken; } void ProcessorBase::bsr(uint32_t offset) { diff --git a/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp b/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp index 458239a04..aa28ebcf2 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp @@ -141,7 +141,6 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController { inline void complete_dbcc(bool, bool, int16_t); inline void bsr(uint32_t); inline void stop() {} // TODO - inline void reset() {} // TODO inline void move_to_usp(uint32_t) {} // TODO inline void move_from_usp(uint32_t &) {} // TODO inline void tas(Preinstruction, uint32_t); @@ -160,6 +159,7 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController { inline void rtr() {} inline void rte() {} inline void rts() {} + inline void reset() {} // 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 @@ -191,6 +191,9 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController { { Microcycle::SameAddress | Microcycle::IsData | Microcycle::SelectByte }, }; + // Reset. + Microcycle reset_cycle { Microcycle::Reset, HalfCycles(248) }; + // Holding spot when awaiting DTACK/etc. Microcycle awaiting_dtack; };