rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp

11 lines
198 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "PPCDecoder.h"
u8 PPCDecoder::DecodeMemory(const u64 address)
{
2014-09-06 15:33:01 +02:00
u32 instr = vm::read32(address);
Decode(instr);
2014-07-07 19:22:36 +02:00
return sizeof(u32);
}