mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 21:08:44 +00:00
18 lines
266 B
C
18 lines
266 B
C
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
struct State
|
|
{
|
|
uint16_t PC = 0;
|
|
uint8_t SP = 0;
|
|
uint8_t A = 0;
|
|
uint8_t X = 0;
|
|
uint8_t Y = 0;
|
|
uint8_t PS = 0;
|
|
uint32_t IRQFlag = 0;
|
|
int32_t CycleCount = 0;
|
|
bool NMIFlag = false;
|
|
|
|
//Used by debugger
|
|
uint16_t DebugPC = 0;
|
|
}; |