Essgee.Unity/Assets/Plugins/Essgee/Emulation/Peripherals/IPeripheral.cs
2025-01-02 17:55:16 +08:00

19 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Essgee.Emulation.Peripherals
{
interface IPeripheral
{
void Startup();
void Shutdown();
void Reset();
byte ReadPort(byte port);
void WritePort(byte port, byte value);
}
}