mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 21:08:44 +00:00
13 lines
174 B
C
13 lines
174 B
C
#pragma once
|
|
#include "stdafx.h"
|
|
#include "CPU.h"
|
|
#include "PPU.h"
|
|
#include "BaseMapper.h"
|
|
|
|
struct DebugState
|
|
{
|
|
State CPU;
|
|
PPUDebugState PPU;
|
|
CartridgeState Cartridge;
|
|
};
|