forked from sin365/AxibugEmuOnline
13 lines
256 B
C#
13 lines
256 B
C#
namespace Essgee.Emulation.Peripherals
|
|
{
|
|
interface IPeripheral : IAxiEssgssStatus
|
|
{
|
|
void Startup();
|
|
void Shutdown();
|
|
void Reset();
|
|
|
|
byte ReadPort(byte port);
|
|
void WritePort(byte port, byte value);
|
|
}
|
|
}
|