mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
- Implemented RAW SPU.
- Implemented memory mapping.
This commit is contained in:
parent
027a31bd84
commit
559852a8fc
43 changed files with 1106 additions and 224 deletions
|
|
@ -135,7 +135,7 @@ public:
|
|||
|
||||
*done = false;
|
||||
|
||||
if(Emu.GetCPU().GetThreads()[0].IsSPU())
|
||||
if(Emu.GetCPU().GetThreads()[0].GetType() != PPC_THREAD_PPU)
|
||||
{
|
||||
SPU_DisAsm& dis_asm = *new SPU_DisAsm(*(PPCThread*)NULL, DumpMode);
|
||||
decoder = new SPU_Decoder(dis_asm);
|
||||
|
|
@ -341,7 +341,7 @@ void DisAsmFrame::Dump(wxCommandEvent& WXUNUSED(event))
|
|||
PPC_DisAsm* disasm;
|
||||
PPC_Decoder* decoder;
|
||||
|
||||
if(Emu.GetCPU().GetThreads()[0].IsSPU())
|
||||
if(Emu.GetCPU().GetThreads()[0].GetType() != PPC_THREAD_PPU)
|
||||
{
|
||||
SPU_DisAsm& dis_asm = *new SPU_DisAsm(*(PPCThread*)NULL, DumpMode);
|
||||
decoder = new SPU_Decoder(dis_asm);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue