2020-10-21 02:18:11 +00:00
|
|
|
//
|
|
|
|
// AppleIIgs.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 20/10/2020.
|
|
|
|
// Copyright 2020 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2020-10-26 01:10:04 +00:00
|
|
|
#ifndef Machines_Apple_AppleIIgs_hpp
|
|
|
|
#define Machines_Apple_AppleIIgs_hpp
|
2020-10-21 02:18:11 +00:00
|
|
|
|
|
|
|
#include "../../../Configurable/Configurable.hpp"
|
|
|
|
#include "../../../Configurable/StandardOptions.hpp"
|
|
|
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../../ROMMachine.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace Apple {
|
|
|
|
namespace IIgs {
|
|
|
|
|
|
|
|
class Machine {
|
|
|
|
public:
|
|
|
|
virtual ~Machine();
|
|
|
|
|
|
|
|
/// Creates and returns an AppleIIgs.
|
|
|
|
static Machine *AppleIIgs(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 01:10:04 +00:00
|
|
|
#endif /* Machines_Apple_AppleIIgs_hpp */
|