mirror of
https://github.com/TomHarte/CLK.git
synced 2025-11-02 02:16:18 +00:00
29 lines
470 B
C++
29 lines
470 B
C++
//
|
|
// BBCMicro.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 14/09/2025.
|
|
// Copyright © 2025 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Analyser/Static/StaticAnalyser.hpp"
|
|
#include "Machines/ROMMachine.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace BBCMicro {
|
|
|
|
struct Machine {
|
|
virtual ~Machine() = default;
|
|
|
|
static std::unique_ptr<Machine> BBCMicro(
|
|
const Analyser::Static::Target *target,
|
|
const ROMMachine::ROMFetcher &rom_fetcher
|
|
);
|
|
};
|
|
|
|
}
|
|
|