AxibugEmuOnline/AxibugEmuOnline.Client.Switch/Assets/Plugins/Essgee.Unity/Emulation/Peripherals/IPeripheral.cs
2025-08-20 10:25:32 +08:00

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);
}
}