mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-27 00:52:56 +00:00
15 lines
207 B
C#
15 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
|
|
}
|
|
}
|