1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00
CLK/Machines/PCCompatible/PCCompatible.hpp

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 */