Add debug util for reproducing #2805

This commit is contained in:
YoshiRulz 2021-09-20 04:53:46 +10:00
parent 2515e73543
commit 0c855e0047
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 29 additions and 0 deletions

View File

@ -9,6 +9,8 @@ using System.Windows.Forms;
using BizHawk.Client.Common;
using BizHawk.Client.EmuHawk.Properties;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores;
using BizHawk.Emulation.Cores.Nintendo.GBA;
using BizHawk.Emulation.Cores.Nintendo.N64;
using BizHawk.WinForms.Controls;
@ -99,6 +101,18 @@ namespace BizHawk.Client.EmuHawk
{
DropDownItems =
{
new DebugVSystemMenuItem("GBA")
{
DropDownItems =
{
new DebugVSystemChildItem(
"Reproduce #2805",
() => ((MGBAMemoryCallbackSystem) Emulator.AsDebuggable().MemoryCallbacks).Debug2805())
{
RequiresCore = CoreNames.Mgba,
},
},
},
new DebugVSystemMenuItem("N64")
{
DropDownItems =

View File

@ -122,6 +122,21 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
callback?.Callback?.Invoke(pc, 0, 0);
}
}
private MemoryCallbackDelegate DebugCallback = null;
private bool DebugCallbackExecuted = false;
public void Debug2805()
{
DebugCallback = (_, _, _) =>
{
Console.WriteLine(DebugCallbackExecuted ? "subsequent call" : "first call");
Remove(DebugCallback);
DebugCallbackExecuted = true;
};
Add(new MemoryCallback("System Bus", MemoryCallbackType.Write, "Plugin Hook", DebugCallback, 0x020096E0, null));
}
}
internal class CallbackContainer