KernelAccessItem.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. using System.Collections.Generic;
  2. namespace Ryujinx.HLE.Loaders.Npdm
  3. {
  4. struct KernelAccessControlItem
  5. {
  6. public bool HasKernelFlags { get; set; }
  7. public uint LowestThreadPriority { get; set; }
  8. public uint HighestThreadPriority { get; set; }
  9. public uint LowestCpuId { get; set; }
  10. public uint HighestCpuId { get; set; }
  11. public bool HasSvcFlags { get; set; }
  12. public bool[] AllowedSvcs { get; set; }
  13. public List<KernelAccessControlMmio> NormalMmio { get; set; }
  14. public List<KernelAccessControlMmio> PageMmio { get; set; }
  15. public List<KernelAccessControlIrq> Irq { get; set; }
  16. public bool HasApplicationType { get; set; }
  17. public int ApplicationType { get; set; }
  18. public bool HasKernelVersion { get; set; }
  19. public int KernelVersionRelease { get; set; }
  20. public bool HasHandleTableSize { get; set; }
  21. public int HandleTableSize { get; set; }
  22. public bool HasDebugFlags { get; set; }
  23. public bool AllowDebug { get; set; }
  24. public bool ForceDebug { get; set; }
  25. }
  26. }