Initial commit

This commit is contained in:
Connor McLaughlin
2019-09-09 17:01:26 +10:00
commit 2149ab4d69
237 changed files with 493349 additions and 0 deletions

22
src/pse/system.h Normal file
View File

@ -0,0 +1,22 @@
#pragma once
#include "bus.h"
#include "dma.h"
#include "cpu_core.h"
#include "types.h"
class System
{
public:
System();
~System();
bool Initialize();
void Reset();
void RunFrame();
private:
CPU::Core m_cpu;
Bus m_bus;
DMA m_dma;
};