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