1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/Machines/MSX/MSX.hpp

32 lines
600 B
C++
Raw Normal View History

2017-11-25 01:43:26 +00:00
//
// MSX.hpp
// Clock Signal
//
// Created by Thomas Harte on 24/11/2017.
// Copyright 2017 Thomas Harte. All rights reserved.
2017-11-25 01:43:26 +00:00
//
#ifndef MSX_hpp
#define MSX_hpp
#include "../../Configurable/Configurable.hpp"
#include "../../Analyser/Static/StaticAnalyser.hpp"
#include "../ROMMachine.hpp"
#include <memory>
#include <vector>
2017-11-25 01:43:26 +00:00
namespace MSX {
std::vector<std::unique_ptr<Configurable::Option>> get_options();
2017-11-25 01:43:26 +00:00
class Machine {
public:
virtual ~Machine();
static Machine *MSX(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
2017-11-25 01:43:26 +00:00
};
}
#endif /* MSX_hpp */