1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 23:29:06 +00:00
CLK/InstructionSets/M68k/Perform.hpp

39 lines
1.1 KiB
C++

//
// Perform.hpp
// Clock Signal
//
// Created by Thomas Harte on 28/04/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#ifndef InstructionSets_M68k_Perform_h
#define InstructionSets_M68k_Perform_h
#include "Model.hpp"
#include "Instruction.hpp"
#include "Status.hpp"
#include "../../Numeric/RegisterSizes.hpp"
namespace InstructionSet {
namespace M68k {
struct NullExceptionHandler {
void raise_exception(int) {}
void consume_cycles(int) {}
};
/// Performs @c op using @c source and @c dest (which mmay be ignored as per the semantics of the operation).
/// And change in provcessor status will be applied to @c status. If this operation raises an exception or consumes
/// additional cycles due to the particular value of the operands (on the 68000, think DIV or MUL), that'll be notified to
/// @c exception_handler.
template <
Operation op,
Model model,
typename ExceptionHandler
> void perform(CPU::RegisterPair32 &source, CPU::RegisterPair32 &dest, Status &status, ExceptionHandler &exception_handler);
}
}
#endif /* InstructionSets_M68k_Perform_h */