1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00

Add TRAP, TRAPV.

This commit is contained in:
Thomas Harte 2022-05-24 15:14:20 -04:00
parent 27fac7af86
commit 19d69bdbb5
2 changed files with 26 additions and 8 deletions

View File

@ -17,13 +17,7 @@
namespace CPU { namespace CPU {
namespace MC68000Mk2 { namespace MC68000Mk2 {
// TODO: BERR, interrupt inputs, etc; and obeying the trace flag. // TODO: obeyance of the trace flag, the address/bus error exception.
// Also, from Instruction.hpp:
//
// TRAP, TRAPV
//
// Not provided by a 68000: Bccl, BSRl
/// States for the state machine which are named by /// States for the state machine which are named by
/// me for their purpose rather than automatically by file position. /// me for their purpose rather than automatically by file position.
@ -183,6 +177,8 @@ enum ExecutionState: int {
RESET, RESET,
NOP, NOP,
STOP, STOP,
TRAP,
TRAPV,
}; };
// MARK: - The state machine. // MARK: - The state machine.
@ -880,6 +876,9 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
SpecialCASE(STOP); SpecialCASE(STOP);
SpecialCASE(TRAP);
SpecialCASE(TRAPV);
default: default:
assert(false); assert(false);
} }
@ -2274,6 +2273,25 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
Prefetch(); Prefetch();
MoveToStateSpecific(Decode); MoveToStateSpecific(Decode);
//
// TRAP, TRAPV
//
// TODO: which program counter is appropriate for TRAP? That of the TRAP,
// or that of the instruction after?
BeginState(TRAP):
IdleBus(2);
exception_vector_ = (opcode_ & 15) + InstructionSet::M68k::Exception::TrapBase;
MoveToStateSpecific(StandardException);
BeginState(TRAPV):
Prefetch();
if(!status_.overflow_flag) {
MoveToStateSpecific(Decode);
}
exception_vector_ = InstructionSet::M68k::Exception::TRAPV;
MoveToStateSpecific(StandardException);
// //
// Various states TODO. // Various states TODO.
// //

View File

@ -150,7 +150,6 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController {
template <typename IntT> void complete_bcc(bool, IntT); template <typename IntT> void complete_bcc(bool, IntT);
inline void complete_dbcc(bool, bool, int16_t); inline void complete_dbcc(bool, bool, int16_t);
inline void bsr(uint32_t); inline void bsr(uint32_t);
inline void stop() {} // TODO
inline void move_to_usp(uint32_t); inline void move_to_usp(uint32_t);
inline void move_from_usp(uint32_t &); inline void move_from_usp(uint32_t &);
inline void tas(Preinstruction, uint32_t); inline void tas(Preinstruction, uint32_t);
@ -170,6 +169,7 @@ struct ProcessorBase: public InstructionSet::M68k::NullFlowController {
inline void rte() {} inline void rte() {}
inline void rts() {} inline void rts() {}
inline void reset() {} inline void reset() {}
inline void stop() {}
// Some microcycles that will be modified as required and used in the main loop; // 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 // the semantics of a switch statement make in-place declarations awkward and