26 lines
512 B
C#
26 lines
512 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Essgee.Emulation.Audio
|
|
{
|
|
public interface IDMGAudioChannel
|
|
{
|
|
int OutputVolume { get; }
|
|
bool IsActive { get; }
|
|
|
|
void Reset();
|
|
void LengthCounterClock();
|
|
void SweepClock();
|
|
void VolumeEnvelopeClock();
|
|
void Step();
|
|
|
|
void WritePort(byte port, byte value);
|
|
byte ReadPort(byte port);
|
|
void WriteWaveRam(byte offset, byte value);
|
|
byte ReadWaveRam(byte offset);
|
|
}
|
|
}
|