ryujinx/src/Ryujinx.HLE/Debugger/GdbSignal.cs
Coxxs 890165707a Add GDB Stub
Author: merry, svc64
2025-06-24 08:34:11 +08:00

15 lines
234 B
C#

namespace Ryujinx.HLE.Debugger
{
enum GdbSignal
{
Zero = 0,
Int = 2,
Quit = 3,
Trap = 5,
Abort = 6,
Alarm = 14,
IO = 23,
XCPU = 24,
Unknown = 143
}
}