mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
34 lines
647 B
C++
34 lines
647 B
C++
|
//
|
||
|
// ZXSpectrum.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 17/03/2021.
|
||
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef ZXSpectrum_hpp
|
||
|
#define ZXSpectrum_hpp
|
||
|
|
||
|
#include "../../../Configurable/Configurable.hpp"
|
||
|
#include "../../../Configurable/StandardOptions.hpp"
|
||
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
||
|
#include "../../ROMMachine.hpp"
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace Sinclair {
|
||
|
namespace ZXSpectrum {
|
||
|
|
||
|
class Machine {
|
||
|
public:
|
||
|
virtual ~Machine();
|
||
|
|
||
|
static Machine *ZXSpectrum(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* ZXSpectrum_hpp */
|