diff options
Diffstat (limited to 'Ryujinx.Horizon/Sdk/Lm/LogDestination.cs')
-rw-r--r-- | Ryujinx.Horizon/Sdk/Lm/LogDestination.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs b/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs new file mode 100644 index 00000000..8b08548d --- /dev/null +++ b/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs @@ -0,0 +1,14 @@ +using System; + +namespace Ryujinx.Horizon.Sdk.Lm +{ + [Flags] + enum LogDestination + { + TargetManager = 1 << 0, + Uart = 1 << 1, + UartIfSleep = 1 << 2, + + All = 0xffff + } +} |