mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
222 B
C++
12 lines
222 B
C++
#include "stdafx.h"
|
|
#include "SPUDisAsm.h"
|
|
|
|
const spu_decoder<SPUDisAsm> s_spu_disasm;
|
|
|
|
u32 SPUDisAsm::disasm(u32 pc)
|
|
{
|
|
const u32 op = *(be_t<u32>*)(offset + pc);
|
|
(this->*(s_spu_disasm.decode(op)))({ op });
|
|
return 4;
|
|
}
|