Essgee.Unity/Assets/Plugins/Essgee/Emulation/Peripherals/IPeripheral.cs
2025-02-05 23:35:36 +08:00

13 lines
237 B
C#

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