2013-11-05 19:12:18 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "PPCDecoder.h"
|
|
|
|
|
|
2013-11-05 20:22:58 +01:00
|
|
|
u8 PPCDecoder::DecodeMemory(const u64 address)
|
2013-11-05 19:12:18 +01:00
|
|
|
{
|
|
|
|
|
Decode(Memory.Read32(address));
|
2013-11-05 20:22:58 +01:00
|
|
|
|
|
|
|
|
return 4;
|
2013-11-05 19:12:18 +01:00
|
|
|
}
|