2018-02-24 03:47:15 +00:00
|
|
|
//
|
|
|
|
// ColecoVision.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 23/02/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-02-24 03:47:15 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ColecoVision_hpp
|
|
|
|
#define ColecoVision_hpp
|
|
|
|
|
2019-03-03 03:59:40 +00:00
|
|
|
#include "../../Configurable/Configurable.hpp"
|
2018-07-11 00:00:46 +00:00
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../ROMMachine.hpp"
|
|
|
|
|
2018-02-24 03:47:15 +00:00
|
|
|
namespace Coleco {
|
|
|
|
namespace Vision {
|
|
|
|
|
2019-03-03 03:59:40 +00:00
|
|
|
std::vector<std::unique_ptr<Configurable::Option>> get_options();
|
|
|
|
|
2018-02-24 03:47:15 +00:00
|
|
|
class Machine {
|
|
|
|
public:
|
|
|
|
virtual ~Machine();
|
2018-07-11 00:00:46 +00:00
|
|
|
static Machine *ColecoVision(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
2018-02-24 03:47:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ColecoVision_hpp */
|