mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
make precompiled header slimmer under Linux to increase CI and dev-machine build-times make sure unused modules don't compile add unused modules to the VS project to easier keep track of them
13 lines
No EOL
229 B
C++
13 lines
No EOL
229 B
C++
#include "stdafx.h"
|
|
#include "Emu/ConLog.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "PPCDecoder.h"
|
|
|
|
u8 PPCDecoder::DecodeMemory(const u64 address)
|
|
{
|
|
u32 instr;
|
|
Memory.Read32ByAddr(address, &instr);
|
|
Decode(instr);
|
|
|
|
return 4;
|
|
} |