rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp
2015-07-10 04:30:41 +03:00

12 lines
205 B
C++

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "PPCDecoder.h"
u32 PPCDecoder::DecodeMemory(const u32 address)
{
u32 instr = vm::ps3::read32(address);
Decode(instr);
return sizeof(u32);
}