rpcsx/rpcs3/Emu/Cell/PPUDecoder.h
DH 0b35be32a4 - Implemented ARM9Thread.
- Improved OpenGL Renderer.
- Improved RAW SPU mfc.
2013-11-03 21:23:16 +02:00

25 lines
343 B
C++

#pragma once
#include "Emu/Cell/PPUOpcodes.h"
#include "Emu/Cell/PPCDecoder.h"
#include "PPUInstrTable.h"
class PPUDecoder : public PPCDecoder
{
PPUOpcodes* m_op;
public:
PPUDecoder(PPUOpcodes& op) : m_op(&op)
{
}
~PPUDecoder()
{
delete m_op;
}
virtual void Decode(const u32 code)
{
(*PPU_instr::main_list)(m_op, code);
}
};