1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-03 15:29:51 +00:00
CLK/InstructionSets/x86/Perform.hpp

54 lines
1.0 KiB
C++
Raw Normal View History

//
// Perform.hpp
// Clock Signal
//
// Created by Thomas Harte on 05/10/2023.
// Copyright © 2023 Thomas Harte. All rights reserved.
//
#pragma once
#include "Instruction.hpp"
2023-10-05 18:37:58 +00:00
#include "Model.hpp"
#include "Flags.hpp"
namespace InstructionSet::x86 {
template <
Model model_,
typename FlowControllerT,
typename RegistersT,
typename MemoryT,
typename IOT
> struct ExecutionContext {
FlowControllerT flow_controller;
Flags flags;
RegistersT registers;
MemoryT memory;
IOT io;
static constexpr Model model = model_;
};
/// Performs @c instruction querying @c registers and/or @c memory as required, using @c io for port input/output,
/// and providing any flow control effects to @c flow_controller.
///
/// Any change in processor status will be applied to @c status.
template <
2023-10-05 18:37:58 +00:00
typename InstructionT,
typename ContextT
> void perform(
2023-10-05 18:37:58 +00:00
const InstructionT &instruction,
ContextT &context
);
template <
typename ContextT
> void interrupt(
int index,
ContextT &context
);
}
2023-10-05 18:37:58 +00:00
#include "Implementation/PerformImplementation.hpp"