mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-26 15:49:57 -06:00
Implement SSHL instruction, fix exception on FMAX/FMIN, and use a better exception message for undefined/unimplemented instructions
This commit is contained in:
@ -27,7 +27,7 @@ namespace ChocolArm64.Instruction
|
||||
|
||||
public static void Und(AILEmitterCtx Context)
|
||||
{
|
||||
throw new Exception("und inst! " + Context.CurrOp.Position.ToString("x8"));
|
||||
throw new NotImplementedException($"Undefined instruction at {Context.CurrOp.Position:x16}");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user