rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp
2014-07-07 21:22:36 +04:00

12 lines
228 B
C++

#include "stdafx.h"
#include "Utilities/Log.h"
#include "Emu/Memory/Memory.h"
#include "PPCDecoder.h"
u8 PPCDecoder::DecodeMemory(const u64 address)
{
u32 instr = Memory.Read32(address);
Decode(instr);
return sizeof(u32);
}