UndefinedInstructionException.cs 408 B

12345678910111213
  1. using System;
  2. namespace Ryujinx.HLE.Exceptions
  3. {
  4. public class UndefinedInstructionException : Exception
  5. {
  6. private const string ExMsg = "The instruction at 0x{0:x16} (opcode 0x{1:x8}) is undefined!";
  7. public UndefinedInstructionException() : base() { }
  8. public UndefinedInstructionException(long position, int opCode) : base(string.Format(ExMsg, position, opCode)) { }
  9. }
  10. }