/ src / Ryujinx.Memory / Tracking / RegionFlags.cs
RegionFlags.cs
 1  using System;
 2  using System.Collections.Generic;
 3  using System.Linq;
 4  using System.Text;
 5  using System.Threading.Tasks;
 6  
 7  namespace Ryujinx.Memory.Tracking
 8  {
 9      [Flags]
10      public enum RegionFlags
11      {
12          None = 0,
13  
14          /// <summary>
15          /// Access to the resource is expected to occasionally be unaligned.
16          /// With some memory managers, guest protection must extend into the previous page to cover unaligned access.
17          /// If this is not expected, protection is not altered, which can avoid unintended resource dirty/flush.
18          /// </summary>
19          UnalignedAccess = 1,
20      }
21  }