aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/State/InstUndefinedEventArgs.cs
blob: c02b648e1498ee371c1b4a45a3d32fd2d5fba474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace ARMeilleure.State
{
    public class InstUndefinedEventArgs : EventArgs
    {
        public ulong Address { get; }
        public int   OpCode  { get; }

        public InstUndefinedEventArgs(ulong address, int opCode)
        {
            Address = address;
            OpCode  = opCode;
        }
    }
}