aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/Range/IRange.cs
blob: 1685396d143b7a3b408ee7924850a273646ddb01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace Ryujinx.Memory.Range
{
    /// <summary>
    /// Range of memory.
    /// </summary>
    public interface IRange
    {
        /// <summary>
        /// Base address.
        /// </summary>
        ulong Address { get; }

        /// <summary>
        /// Size of the range.
        /// </summary>
        ulong Size { get; }

        /// <summary>
        /// End address.
        /// </summary>
        ulong EndAddress { get; }

        /// <summary>
        /// Check if this range overlaps with another.
        /// </summary>
        /// <param name="address">Base address</param>
        /// <param name="size">Size of the range</param>
        /// <returns>True if overlapping, false otherwise</returns>
        bool OverlapsWith(ulong address, ulong size);
    }
}