GBA.Unity/Assets/Iris/Iris.NDS/PPU.cs
2024-08-14 16:02:39 +08:00

20 lines
416 B
C#

namespace Iris.NDS
{
public sealed class PPU
{
private const int KB = 1024;
private readonly Common.System.PresentFrame_Delegate _presentFrameCallback;
internal PPU(Common.System.PresentFrame_Delegate presentFrameCallback)
{
_presentFrameCallback = presentFrameCallback;
}
internal void Step()
{
// TODO
}
}
}