mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 02:00:17 +00:00
14 lines
207 B
C#
14 lines
207 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Lm
|
|
{
|
|
[Flags]
|
|
enum LogDestination
|
|
{
|
|
TargetManager = 1 << 0,
|
|
Uart = 1 << 1,
|
|
UartIfSleep = 1 << 2,
|
|
|
|
All = 0xffff
|
|
}
|
|
}
|