mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 02:12:25 -07:00
Added initial support for function names from symbol table on the cpu with tracing, fix wrong ImageEnd on executables with MOD0, fix issue on the CPU on input elimination for instruction with more than one register store
This commit is contained in:
14
ChocolArm64/Events/AInstExceptionEventArgs.cs
Normal file
14
ChocolArm64/Events/AInstExceptionEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace ChocolArm64.Events
|
||||
{
|
||||
public class AInstExceptionEventArgs : EventArgs
|
||||
{
|
||||
public int Id { get; private set; }
|
||||
|
||||
public AInstExceptionEventArgs(int Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user