mirror of https://github.com/PCSX2/pcsx2.git
IPU: Fill Input FIFO on command end ready for next command
This commit is contained in:
parent
32eac3ff13
commit
40d9e13334
|
@ -1000,4 +1000,10 @@ __noinline void IPUWorker()
|
|||
ipuRegs.ctrl.BUSY = 0;
|
||||
//ipu_cmd.current = 0xffffffff;
|
||||
hwIntcIrq(INTC_IPU);
|
||||
|
||||
// Fill the FIFO ready for the next command
|
||||
if (ipu1ch.chcr.STR && cpuRegs.eCycle[4] == 0x9999)
|
||||
{
|
||||
CPU_INT(DMAC_TO_IPU, 32);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue