2017-11-24 20:43:26 -05:00
|
|
|
//
|
|
|
|
// MSX.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 24/11/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-11-24 20:43:26 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef MSX_hpp
|
|
|
|
#define MSX_hpp
|
|
|
|
|
2017-12-29 18:36:42 -05:00
|
|
|
#include "../../Configurable/Configurable.hpp"
|
2018-07-10 20:00:46 -04:00
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../ROMMachine.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2017-12-29 18:36:42 -05:00
|
|
|
|
2017-11-24 20:43:26 -05:00
|
|
|
namespace MSX {
|
|
|
|
|
2018-07-10 20:00:46 -04:00
|
|
|
std::vector<std::unique_ptr<Configurable::Option>> get_options();
|
|
|
|
|
2017-11-24 20:43:26 -05:00
|
|
|
class Machine {
|
|
|
|
public:
|
|
|
|
virtual ~Machine();
|
2018-07-10 20:00:46 -04:00
|
|
|
static Machine *MSX(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
2017-11-24 20:43:26 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MSX_hpp */
|