aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events/InstUndefinedEventArgs.cs
blob: 3ad7ea8b9ec4febf82975c8bb8946ef5f089ccf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}