mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 04:27:10 +02:00
Implement SvcGetThreadContext3
This commit is contained in:
parent
f246334568
commit
3028d3719a
10 changed files with 163 additions and 12 deletions
|
@ -4,11 +4,13 @@ namespace ChocolArm64.Events
|
|||
{
|
||||
public class AInstExceptionEventArgs : EventArgs
|
||||
{
|
||||
public int Id { get; private set; }
|
||||
public long Position { get; private set; }
|
||||
public int Id { get; private set; }
|
||||
|
||||
public AInstExceptionEventArgs(int Id)
|
||||
public AInstExceptionEventArgs(long Position, int Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
this.Position = Position;
|
||||
this.Id = Id;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue