Newer
Older
#include <cpu/ee.hpp>
/* This class act as the "motherboard" of sorts */
class ComponentManager {
public:
ComponentManager();
/* Memory operations */
template <typename T>
protected:
void read_bios();
public:
/* Components */
std::unique_ptr<EmotionEngine> ee;