Essgee.Unity/Assets/Plugins/Essgee/Emulation/CPU/ICPU.cs

20 lines
323 B
C#
Raw Normal View History

2025-01-02 17:55:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Essgee.Emulation.CPU
{
interface ICPU
{
void Startup();
void Shutdown();
void Reset();
int Step();
void SetStackPointer(ushort value);
void SetProgramCounter(ushort value);
}
}