28 lines
636 B
C#
28 lines
636 B
C#
using System;
|
|
|
|
namespace VirtualNes.Core
|
|
{
|
|
public class APU_FME7 : APU_INTERFACE
|
|
{
|
|
public override void Reset(float fClock, int nRate)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Setup(float fClock, int nRate)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Write(ushort addr, byte data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override int Process(int channel)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|