BizHawk/BizHawk.Emulation/Sound/YM2612.cs

27 lines
518 B
C#

namespace BizHawk.Emulation.Sound
{
public sealed class YM2612 : ISoundProvider
{
public byte ReadStatus()
{
// default status: not BUSY, both timers tripped
return 3;
}
public void Write(int addr, byte value)
{
}
public void Reset()
{
}
public void DiscardSamples() { }
public void GetSamples(short[] samples)
{
// TODO
}
}
}