rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp

13 lines
232 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)
{
u32 instr;
Memory.Read32ByAddr(address, &instr);
Decode(instr);
return 4;
}