mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:38:33 +00:00
16 lines
373 B
C#
16 lines
373 B
C#
|
using System;
|
||
|
|
||
|
namespace ChocolArm64.Events
|
||
|
{
|
||
|
public class InstUndefinedEventArgs : EventArgs
|
||
|
{
|
||
|
public long Position { get; private set; }
|
||
|
public int RawOpCode { get; private set; }
|
||
|
|
||
|
public InstUndefinedEventArgs(long position, int rawOpCode)
|
||
|
{
|
||
|
Position = position;
|
||
|
RawOpCode = rawOpCode;
|
||
|
}
|
||
|
}
|
||
|
}
|