2020-10-20 22:18:11 -04:00
|
|
|
//
|
|
|
|
// AppleIIgs.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 20/10/2020.
|
|
|
|
// Copyright 2020 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
2020-10-20 22:18:11 -04:00
|
|
|
|
|
|
|
#include "../../../Configurable/Configurable.hpp"
|
|
|
|
#include "../../../Configurable/StandardOptions.hpp"
|
|
|
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../../ROMMachine.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2023-05-10 16:02:18 -05:00
|
|
|
namespace Apple::IIgs {
|
2020-10-20 22:18:11 -04:00
|
|
|
|
|
|
|
class Machine {
|
|
|
|
public:
|
|
|
|
virtual ~Machine();
|
|
|
|
|
|
|
|
/// Creates and returns an AppleIIgs.
|
2024-01-12 22:03:19 -05:00
|
|
|
static std::unique_ptr<Machine> AppleIIgs(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
2020-10-20 22:18:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|