mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-21 00:04:24 +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;
|
|
};
|