Essgee.Unity/Assets/Plugins/Essgee/Emulation/CPU/ICPU.cs
2025-02-05 23:35:36 +08:00

14 lines
251 B
C#

namespace Essgee.Emulation.CPU
{
interface ICPU
{
void Startup();
void Shutdown();
void Reset();
int Step();
void SetStackPointer(ushort value);
void SetProgramCounter(ushort value);
}
}