mirror of
https://github.com/PCSX2/pcsx2.git
synced 2024-11-27 03:20:35 +00:00
IOP/EE: Add SBUS interrupts
Lets the CPUs trigger an interrupt on the other.
This commit is contained in:
parent
444b110411
commit
35ada362d4
@ -16,6 +16,8 @@
|
||||
#include "CDVD/Ps1CD.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include "IopDma.h" // for iopIntcIrq
|
||||
|
||||
using namespace R5900;
|
||||
|
||||
// Shift the middle 8 bits (bits 4-12) into the lower 8 bits.
|
||||
@ -165,7 +167,11 @@ void _hwWrite32( u32 mem, u32 value )
|
||||
psHu32(mem) &= ~value;
|
||||
return;
|
||||
|
||||
mcase(SBUS_F240) :
|
||||
mcase(SBUS_F240):
|
||||
if (value & (1 << 18))
|
||||
{
|
||||
iopIntcIrq(1);
|
||||
}
|
||||
if (value & (1 << 19))
|
||||
{
|
||||
u32 cycle = psxRegs.cycle;
|
||||
|
@ -286,6 +286,13 @@ static __fi void _HwWrite_16or32_Page1( u32 addr, T val )
|
||||
{
|
||||
switch( masked_addr )
|
||||
{
|
||||
case 0x450:
|
||||
psxHu(addr) = val;
|
||||
if (val & (1 << 1))
|
||||
{
|
||||
hwIntcIrq(INTC_SBUS);
|
||||
}
|
||||
break;
|
||||
// ------------------------------------------------------------------------
|
||||
case (HW_SIO_DATA & 0x0fff):
|
||||
Console.Error("%s(%08X, %08X) Unexpected 16 or 32 bit write to SIO0 DATA!", __FUNCTION__, addr, val);
|
||||
|
Loading…
Reference in New Issue
Block a user