1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00
CLK/Machines/Amiga/Amiga.hpp

27 lines
499 B
C++
Raw Normal View History

2021-07-17 00:30:48 +00:00
//
// Amiga.hpp
// Clock Signal
//
// Created by Thomas Harte on 16/07/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#pragma once
2021-07-17 00:30:48 +00:00
#include "../../Analyser/Static/StaticAnalyser.hpp"
#include "../ROMMachine.hpp"
#include <memory>
2021-07-17 00:30:48 +00:00
namespace Amiga {
class Machine {
public:
2024-02-17 02:47:23 +00:00
virtual ~Machine() = default;
2021-07-17 00:30:48 +00:00
/// Creates and returns an Amiga.
static std::unique_ptr<Machine> Amiga(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
2021-07-17 00:30:48 +00:00
};
}