mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-08 16:36:26 -05:00
Add BRK instruction, fix wrong namespace on one of Am interfaces, and disable Debug/Trace logs by default
This commit is contained in:
11
Ryujinx/OsHle/Exceptions/GuestBrokeExecutionException.cs
Normal file
11
Ryujinx/OsHle/Exceptions/GuestBrokeExecutionException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.OsHle.Exceptions
|
||||
{
|
||||
public class GuestBrokeExecutionException : Exception
|
||||
{
|
||||
private const string ExMsg = "The guest program broke execution!";
|
||||
|
||||
public GuestBrokeExecutionException() : base(ExMsg) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user