mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
43 lines
622 B
C
43 lines
622 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "Memory.h"
|
||
|
|
||
|
class Configuration {
|
||
|
public:
|
||
|
Configuration();
|
||
|
|
||
|
bool isDebugMode() const {
|
||
|
return m_debugMode;
|
||
|
}
|
||
|
|
||
|
void setDebugMode(bool value) {
|
||
|
m_debugMode = value;
|
||
|
}
|
||
|
|
||
|
bool isProfileMode() const {
|
||
|
return m_profileMode;
|
||
|
}
|
||
|
|
||
|
void setProfileMode(bool value) {
|
||
|
m_profileMode = value;
|
||
|
}
|
||
|
|
||
|
std::string getRomDirectory() const {
|
||
|
return m_romDirectory;
|
||
|
}
|
||
|
|
||
|
EightBit::register16_t getStartAddress() const {
|
||
|
EightBit::register16_t returned;
|
||
|
returned.word = 0x100;
|
||
|
return returned;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
bool m_debugMode;
|
||
|
bool m_profileMode;
|
||
|
|
||
|
std::string m_romDirectory;
|
||
|
};
|