EightBit/MC6809/test/Configuration.h
Adrian Conlon e88cbc269b Add a skeletal half way house between a 6809 tester and a CoCo 2 emulator.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-08-26 19:09:34 +01:00

20 lines
390 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <Register.h>
class Configuration {
public:
Configuration() = default;
bool isDebugMode() const { return m_debugMode; }
void setDebugMode(bool value) { m_debugMode = value; }
std::string getRomDirectory() const { return m_romDirectory; }
private:
bool m_debugMode = false;
std::string m_romDirectory = "roms\\coco2h";
};