BizHawk/BizHawk.Emulation.Cores/CPUs/LR35902/Interrupts.cs

100 lines
2.3 KiB
C#
Raw Normal View History

2017-08-29 13:13:56 +00:00
using System;
namespace BizHawk.Emulation.Common.Components.LR35902
{
public partial class LR35902
{
private bool nonMaskableInterrupt;
public bool NonMaskableInterrupt
{
get { return nonMaskableInterrupt; }
set { if (value && !nonMaskableInterrupt) NonMaskableInterruptPending = true; nonMaskableInterrupt = value; }
}
private bool nonMaskableInterruptPending;
public bool NonMaskableInterruptPending { get { return nonMaskableInterruptPending; } set { nonMaskableInterruptPending = value; } }
private int interruptMode;
public int InterruptMode
{
get { return interruptMode; }
set { if (value < 0 || value > 2) throw new ArgumentOutOfRangeException(); interruptMode = value; }
}
2017-11-19 00:45:11 +00:00
private void INTERRUPT_()
2017-08-29 13:13:56 +00:00
{
cur_instr = new ushort[]
{IDLE,
IDLE,
IDLE,
IDLE,
IDLE,
DEC16, SPl, SPh,
IDLE,
WR, SPl, SPh, PCh,
IDLE,
2017-11-19 14:30:18 +00:00
INT_GET, W,// NOTE: here is where we check for a cancelled IRQ
DEC16, SPl, SPh,
2017-08-29 13:13:56 +00:00
WR, SPl, SPh, PCl,
IDLE,
IDLE,
2017-11-19 14:30:18 +00:00
IDLE,
IDLE,
2017-11-19 00:45:11 +00:00
TR, PCl, W,
2017-08-29 13:13:56 +00:00
ASGN, PCh, 0,
IDLE,
OP };
}
private void INTERRUPT_GBC_NOP()
{
cur_instr = new ushort[]
{IDLE,
IDLE,
IDLE,
IDLE,
IDLE,
DEC16, SPl, SPh,
IDLE,
WR, SPl, SPh, PCh,
IDLE,
INT_GET, W,// NOTE: here is where we check for a cancelled IRQ
DEC16, SPl, SPh,
WR, SPl, SPh, PCl,
IDLE,
IDLE,
IDLE,
IDLE,
TR, PCl, W,
ASGN, PCh, 0,
IDLE,
IDLE,
IDLE,
IDLE,
IDLE,
OP };
}
2017-11-19 00:45:11 +00:00
private static ushort[] INT_vectors = new ushort[] {0x40, 0x48, 0x50, 0x58, 0x60, 0x00};
public ushort int_src;
public int stop_time;
public bool stop_check;
public bool is_GBC; // GBC automatically adds a NOP to avoid the HALT bug (according to Sinimas)
2018-05-02 01:53:20 +00:00
public bool I_use; // in halt mode, the I flag is checked earlier then when deicision to IRQ is taken
public bool skip_once;
public bool Halt_bug_2;
public bool Halt_bug_3;
2017-08-29 13:13:56 +00:00
private void ResetInterrupts()
{
2018-05-02 01:53:20 +00:00
I_use = false;
skip_once = false;
Halt_bug_2 = false;
Halt_bug_3 = false;
2017-08-29 13:13:56 +00:00
NonMaskableInterrupt = false;
NonMaskableInterruptPending = false;
InterruptMode = 1;
}
}
}