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