MemoryRegion.cs 176 B

12345678910
  1. namespace Ryujinx.HLE.HOS.Kernel.Memory
  2. {
  3. enum MemoryRegion
  4. {
  5. Application = 0,
  6. Applet = 1,
  7. Service = 2,
  8. NvServices = 3
  9. }
  10. }