mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 03:20:17 +00:00
15 lines
237 B
C#
15 lines
237 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
|
|
}
|
|
}
|