rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp
2015-01-22 00:09:37 +03:00

11 lines
199 B
C++

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