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"
2014-09-15 00:17:24 +02:00
u8 PPCDecoder::DecodeMemory(const u32 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);
}