NESHawk: Fix VRC IRQ timing
This commit is contained in:
parent
994e415a1b
commit
57c6149274
|
@ -435,7 +435,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
//enabled
|
||||
irq_enabled = true;
|
||||
irq_counter = irq_reload;
|
||||
irq_prescaler = 341;
|
||||
irq_prescaler = 341 + 3;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -466,7 +466,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
{
|
||||
irq_pending = true;
|
||||
irq_counter = irq_reload;
|
||||
SyncIRQ();
|
||||
//SyncIRQ();
|
||||
}
|
||||
else
|
||||
irq_counter++;
|
||||
|
@ -474,6 +474,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
|
||||
public override void ClockCPU()
|
||||
{
|
||||
if (irq_pending)
|
||||
{
|
||||
SyncIRQ();
|
||||
}
|
||||
|
||||
if (type == 2) return;
|
||||
if (!irq_enabled) return;
|
||||
|
||||
|
|
|
@ -247,7 +247,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
//enabled
|
||||
irq_enabled = true;
|
||||
irq_counter = irq_reload;
|
||||
irq_prescaler = 341;
|
||||
irq_prescaler = 341 + 3;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -294,7 +294,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
{
|
||||
irq_pending = true;
|
||||
irq_counter = irq_reload;
|
||||
SyncIRQ();
|
||||
//SyncIRQ();
|
||||
}
|
||||
else
|
||||
irq_counter++;
|
||||
|
@ -302,6 +302,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
|
||||
public override void ClockCPU()
|
||||
{
|
||||
if (irq_pending)
|
||||
{
|
||||
SyncIRQ();
|
||||
}
|
||||
|
||||
if (!irq_enabled) return;
|
||||
|
||||
if (irq_mode)
|
||||
|
|
Loading…
Reference in New Issue