1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-22 08:16:42 +00:00

Adds a Master System class, so that SMSs can end up somewhere.

This commit is contained in:
Thomas Harte
2018-09-21 22:13:07 -04:00
parent 0d01346ad4
commit e511261b04
3 changed files with 125 additions and 1 deletions
+14 -1
View File
@@ -9,6 +9,19 @@
#ifndef MasterSystem_hpp
#define MasterSystem_hpp
#include <stdio.h>
#include "../../Analyser/Static/StaticAnalyser.hpp"
#include "../ROMMachine.hpp"
namespace Sega {
namespace MasterSystem {
class Machine {
public:
virtual ~Machine();
static Machine *MasterSystem(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
};
}
}
#endif /* MasterSystem_hpp */