rpcsx/rpcs3/Emu/Cell/PPCDecoder.cpp
DH b263c3ebaf - Renamed ARM9 to ARMv7.
- Improved ELF32 loader.
2013-11-05 21:22:58 +02:00

9 lines
140 B
C++

#include "stdafx.h"
#include "PPCDecoder.h"
u8 PPCDecoder::DecodeMemory(const u64 address)
{
Decode(Memory.Read32(address));
return 4;
}