Fix power up behaviour (and Dragon Slayer IV)
Power up timing is now consistent with all know information regarding VBlank timing and initial state. This is mostly thanks to True's console testing of Battletoads, which happens to require exacting timing to sync. However, Dragon Slayer 4 requires writes to $2000 to be recognized well before the PPU is initialized, and even blargg states that this should not be the case. Since the game obviously is supposed to run, I have removed all write ignore code until more testing can be done.
This commit is contained in:
parent
c8117815bf
commit
92d4e1bd17
|
@ -340,11 +340,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
if (!reg_2000.vblank_nmi_gen & ((value & 0x80) != 0) && (Reg2002_vblank_active) && !Reg2002_vblank_clear_pending)
|
||||
{
|
||||
//if we just unleashed the vblank interrupt then activate it now
|
||||
if (ppudead<=1)
|
||||
NMI_PendingInstructions = 2;
|
||||
NMI_PendingInstructions = 2;
|
||||
}
|
||||
if (ppudead<=1)
|
||||
reg_2000.Value = value;
|
||||
reg_2000.Value = value;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -638,18 +638,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
//register before around a full frame, but no games
|
||||
//should write to those regs during that time, it needs
|
||||
//to wait for vblank
|
||||
if (ppudead < 2)
|
||||
{
|
||||
ppur.status.sl = 241;
|
||||
runppu(3);
|
||||
//Reg2002_vblank_active = true;
|
||||
runppu(3);
|
||||
runppu(postNMIlines * kLineTime - 6);
|
||||
ppur.status.sl = 0;
|
||||
//clear_2002();
|
||||
}
|
||||
runppu(241 * kLineTime);
|
||||
runppu(preNMIlines * kLineTime);
|
||||
|
||||
runppu(241 * kLineTime-7*3);
|
||||
//runppu(preNMIlines * kLineTime);
|
||||
--ppudead;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue