mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-30 12:30:52 +00:00
11 lines
123 B
C
11 lines
123 B
C
|
#pragma once
|
||
|
#include "stdafx.h"
|
||
|
#include "CPU.h"
|
||
|
#include "PPU.h"
|
||
|
|
||
|
struct DebugState
|
||
|
{
|
||
|
State CPU;
|
||
|
PPUDebugState PPU;
|
||
|
};
|