mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:28:33 +00:00
16 lines
372 B
C#
16 lines
372 B
C#
|
using System;
|
||
|
|
||
|
namespace ChocolArm64.State
|
||
|
{
|
||
|
public class AInstUndEventArgs : EventArgs
|
||
|
{
|
||
|
public long Position { get; private set; }
|
||
|
public int RawOpCode { get; private set; }
|
||
|
|
||
|
public AInstUndEventArgs(long Position, int RawOpCode)
|
||
|
{
|
||
|
this.Position = Position;
|
||
|
this.RawOpCode = RawOpCode;
|
||
|
}
|
||
|
}
|
||
|
}
|