14 lines
251 B
C#
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);
|
|
}
|
|
}
|