rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp
2014-10-30 18:17:51 +03:00

12 lines
199 B
C++

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