mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:38:36 +00:00
2cb8541462
* Print stack trace on invalid memory accesses * Rebased, change code region base address for 39-bits address space, print stack trace on break and undefined instructions too
14 lines
276 B
C#
14 lines
276 B
C#
using System;
|
|
|
|
namespace ChocolArm64.Events
|
|
{
|
|
public class AInvalidAccessEventArgs : EventArgs
|
|
{
|
|
public long Position { get; private set; }
|
|
|
|
public AInvalidAccessEventArgs(long Position)
|
|
{
|
|
this.Position = Position;
|
|
}
|
|
}
|
|
} |