mirror of
https://github.com/TomHarte/CLK.git
synced 2026-03-11 04:42:20 +00:00
26 lines
422 B
C++
26 lines
422 B
C++
//
|
|
// Perform.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 21/10/2025.
|
|
// Copyright © 2025 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "Decoder.hpp"
|
|
#include "Registers.hpp"
|
|
|
|
#pragma once
|
|
|
|
namespace CPU::MOS6502Mk2 {
|
|
|
|
template <typename RegistersT>
|
|
void perform(const Operation operation, RegistersT ®isters, const uint8_t operand) {
|
|
(void)operation;
|
|
(void)registers;
|
|
(void)operand;
|
|
|
|
// TODO.
|
|
}
|
|
|
|
}
|