aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs
blob: 8b08548d6ef38ffe36c71ac7ebe57a8b655916c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Ryujinx.Horizon.Sdk.Lm
{
    [Flags]
    enum LogDestination
    {
        TargetManager = 1 << 0,
        Uart = 1 << 1,
        UartIfSleep = 1 << 2,

        All = 0xffff
    }
}