HvExecutionContext: fix DebugPc
This commit is contained in:
parent
ac438d6572
commit
40584e0e45
1 changed files with 2 additions and 2 deletions
|
@ -162,8 +162,8 @@ namespace Ryujinx.Cpu.AppleHv
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public ulong DebugPc
|
public ulong DebugPc
|
||||||
{
|
{
|
||||||
get => Pc;
|
get => _impl.ElrEl1;
|
||||||
set => Pc = value;
|
set => _impl.ElrEl1 = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
|
Loading…
Reference in a new issue