mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-12 08:30:05 +00:00
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
//
|
|
// MSX.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/11/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../../Configurable/Configurable.hpp"
|
|
#include "../../Configurable/StandardOptions.hpp"
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
#include "../ROMMachine.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace MSX {
|
|
|
|
struct Machine {
|
|
virtual ~Machine() = default;
|
|
static std::unique_ptr<Machine> MSX(const Analyser::Static::Target *, const ROMMachine::ROMFetcher &);
|
|
|
|
class Options:
|
|
public Reflection::StructImpl<Options>,
|
|
public Configurable::DisplayOption<Options>,
|
|
public Configurable::QuickloadOption<Options>
|
|
{
|
|
friend Configurable::DisplayOption<Options>;
|
|
friend Configurable::QuickloadOption<Options>;
|
|
public:
|
|
Options(Configurable::OptionsType type) :
|
|
Configurable::DisplayOption<Options>(type == Configurable::OptionsType::UserFriendly ? Configurable::Display::RGB : Configurable::Display::CompositeColour),
|
|
Configurable::QuickloadOption<Options>(type == Configurable::OptionsType::UserFriendly) {}
|
|
|
|
private:
|
|
Options() : Options(Configurable::OptionsType::UserFriendly) {}
|
|
|
|
friend Reflection::StructImpl<Options>;
|
|
void declare_fields() {
|
|
declare_display_option();
|
|
declare_quickload_option();
|
|
}
|
|
};
|
|
};
|
|
|
|
}
|