22 lines
No EOL
312 B
C++
22 lines
No EOL
312 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "PPU.h"
|
|
|
|
class NsfPpu : public PPU
|
|
{
|
|
protected:
|
|
void DrawPixel()
|
|
{
|
|
}
|
|
|
|
void SendFrame()
|
|
{
|
|
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
|
|
}
|
|
|
|
public:
|
|
NsfPpu(MemoryManager* memoryManager) : PPU(memoryManager)
|
|
{
|
|
_simpleMode = true;
|
|
}
|
|
}; |