2016-06-25 20:46:54 -04:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "PPU.h"
|
|
|
|
|
|
|
|
class NsfPpu : public PPU
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
void DrawPixel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SendFrame()
|
|
|
|
{
|
|
|
|
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2017-03-31 22:14:16 -04:00
|
|
|
NsfPpu(BaseMapper* mapper) : PPU(mapper)
|
2016-06-25 20:46:54 -04:00
|
|
|
{
|
2017-03-31 22:14:16 -04:00
|
|
|
|
2016-06-25 20:46:54 -04:00
|
|
|
}
|
|
|
|
};
|