Compare commits

...

2 commits

Author SHA1 Message Date
Coxxs
3dd7739a23 Merge branch 'gdb-stub' into 'master'
Add GDB Stub

See merge request [ryubing/ryujinx!71](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/71)
2025-06-20 16:32:29 -05:00
Coxxs
f511c4dd1c gdb: Update DebugPc during svc call 2025-06-21 05:28:12 +08:00

View file

@ -169,6 +169,11 @@ namespace ARMeilleure.State
internal void OnSupervisorCall(ulong address, int imm) internal void OnSupervisorCall(ulong address, int imm)
{ {
if (Optimizations.EnableDebugging)
{
DebugPc = Pc; // TODO: Is this the best place to update DebugPc?
}
_supervisorCallback?.Invoke(this, address, imm); _supervisorCallback?.Invoke(this, address, imm);
} }