mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-28 18:47:11 +02:00
Structural and Memory Safety Improvements, Analyzer Cleanup (ryubing/ryujinx!47)
See merge request ryubing/ryujinx!47
This commit is contained in:
parent
d03ae9c164
commit
ea027d65a7
309 changed files with 1018 additions and 1247 deletions
|
@ -113,7 +113,7 @@ namespace Ryujinx.Tests.Unicorn
|
|||
public void RunForCount(ulong count)
|
||||
{
|
||||
// FIXME: untilAddr should be 0xFFFFFFFFFFFFFFFFu
|
||||
Uc.EmuStart(this.PC, -1, 0, (long)count);
|
||||
Uc.EmuStart(PC, -1, 0, (long)count);
|
||||
}
|
||||
|
||||
public void Step()
|
||||
|
@ -141,7 +141,6 @@ namespace Ryujinx.Tests.Unicorn
|
|||
Arm.UC_ARM_REG_R15
|
||||
];
|
||||
|
||||
#pragma warning disable IDE0051, IDE0052 // Remove unused private member
|
||||
private static readonly int[] _qRegisters =
|
||||
[
|
||||
Arm.UC_ARM_REG_Q0,
|
||||
|
@ -161,7 +160,6 @@ namespace Ryujinx.Tests.Unicorn
|
|||
Arm.UC_ARM_REG_Q14,
|
||||
Arm.UC_ARM_REG_Q15
|
||||
];
|
||||
#pragma warning restore IDE0051, IDE0052
|
||||
|
||||
public uint GetX(int index)
|
||||
{
|
||||
|
|
|
@ -102,7 +102,7 @@ namespace Ryujinx.Tests.Unicorn
|
|||
public void RunForCount(ulong count)
|
||||
{
|
||||
// FIXME: untilAddr should be 0xFFFFFFFFFFFFFFFFul
|
||||
Uc.EmuStart((long)this.PC, -1, 0, (long)count);
|
||||
Uc.EmuStart((long)PC, -1, 0, (long)count);
|
||||
}
|
||||
|
||||
public void Step()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue