mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 09:39:44 +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;
|
|
};
|