mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
28 lines
493 B
C++
28 lines
493 B
C++
//
|
|
// Archimedes.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/03/2024.
|
|
// Copyright © 2024 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
|
#include "../../ROMMachine.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace Archimedes {
|
|
|
|
class Machine {
|
|
public:
|
|
virtual ~Machine() = default;
|
|
static std::unique_ptr<Machine> Archimedes(
|
|
const Analyser::Static::Target *target,
|
|
const ROMMachine::ROMFetcher &rom_fetcher
|
|
);
|
|
};
|
|
|
|
}
|