mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
199 B
C++
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);
|
|
}
|