mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-18 17:06:15 +00:00
34 lines
592 B
C++
34 lines
592 B
C++
|
//
|
||
|
// PCCompatible.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 15/11/2023.
|
||
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef PCCompatible_hpp
|
||
|
#define PCCompatible_hpp
|
||
|
|
||
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
||
|
#include "../ROMMachine.hpp"
|
||
|
|
||
|
namespace PCCompatible {
|
||
|
|
||
|
/*!
|
||
|
Models a PC compatible.
|
||
|
*/
|
||
|
class Machine {
|
||
|
public:
|
||
|
virtual ~Machine();
|
||
|
|
||
|
/// Creates and returns a PC Compatible.
|
||
|
static Machine *PCCompatible(
|
||
|
const Analyser::Static::Target *target,
|
||
|
const ROMMachine::ROMFetcher &rom_fetcher
|
||
|
);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* PCCompatible_hpp */
|