rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp

12 lines
228 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Utilities/Log.h"
#include "Emu/Memory/Memory.h"
#include "PPCDecoder.h"
u8 PPCDecoder::DecodeMemory(const u64 address)
{
2014-07-07 19:22:36 +02:00
u32 instr = Memory.Read32(address);
Decode(instr);
2014-07-07 19:22:36 +02:00
return sizeof(u32);
}