mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
61c127ed2e
And, similarly, exposes it for the route used by SDL.
28 lines
497 B
C++
28 lines
497 B
C++
//
|
|
// Enterprise.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/06/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Enterprise_hpp
|
|
#define Enterprise_hpp
|
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
#include "../ROMMachine.hpp"
|
|
|
|
namespace Enterprise {
|
|
|
|
class Machine {
|
|
public:
|
|
virtual ~Machine();
|
|
|
|
static Machine *Enterprise(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* Enterprise_hpp */
|