mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:48:40 +00:00
13 lines
414 B
C#
13 lines
414 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.OsHle.Exceptions
|
|
{
|
|
public class UndefinedInstructionException : Exception
|
|
{
|
|
private const string ExMsg = "The instruction at 0x{0:x16} (opcode 0x{1:x8}) is undefined!";
|
|
|
|
public UndefinedInstructionException() : base() { }
|
|
|
|
public UndefinedInstructionException(long Position, int OpCode) : base(string.Format(ExMsg, Position, OpCode)) { }
|
|
}
|
|
} |