mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-19 02:22:39 +00:00
19 lines
371 B
C++
19 lines
371 B
C++
//
|
|
// TubeProcessor.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 07/11/2025.
|
|
// Copyright © 2025 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Analyser/Static/Acorn/Target.hpp"
|
|
|
|
namespace Acorn::Tube {
|
|
|
|
using TubeProcessor = Analyser::Static::Acorn::BBCMicroTarget::TubeProcessor;
|
|
template <typename ULAT, TubeProcessor> class Processor;
|
|
|
|
}
|