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

13 lines
237 B
C#
Raw Normal View History

2025-02-14 16:09:33 +08:00
namespace Essgee.Emulation.Peripherals
{
interface IPeripheral
{
void Startup();
void Shutdown();
void Reset();
byte ReadPort(byte port);
void WritePort(byte port, byte value);
}
}