mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-24 19:38:32 -06:00
11 lines
199 B
C++
11 lines
199 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "PPCDecoder.h"
|
|
|
|
u32 PPCDecoder::DecodeMemory(const u32 address)
|
|
{
|
|
u32 instr = vm::read32(address);
|
|
Decode(instr);
|
|
|
|
return sizeof(u32);
|
|
} |