AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Emulation/Peripherals/IPeripheral.cs

13 lines
250 B
C#

namespace Essgee.Emulation.Peripherals
{
interface IPeripheral : IAxiStatus
{
void Startup();
void Shutdown();
void Reset();
byte ReadPort(byte port);
void WritePort(byte port, byte value);
}
}