2016-01-10 19:56:40 -05:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "CPU.h"
|
|
|
|
#include "PPU.h"
|
2016-09-04 18:08:16 -04:00
|
|
|
#include "BaseMapper.h"
|
2016-01-10 19:56:40 -05:00
|
|
|
|
|
|
|
struct DebugState
|
|
|
|
{
|
|
|
|
State CPU;
|
|
|
|
PPUDebugState PPU;
|
2016-09-04 18:08:16 -04:00
|
|
|
CartridgeState Cartridge;
|
2016-01-10 19:56:40 -05:00
|
|
|
};
|