diff --git a/M6502/M6502.Symbols/Parser.cs b/M6502/M6502.Symbols/Parser.cs index 8ac4040..af9b2ac 100644 --- a/M6502/M6502.Symbols/Parser.cs +++ b/M6502/M6502.Symbols/Parser.cs @@ -4,6 +4,7 @@ { namespace Symbols { + using System; using System.Diagnostics; public sealed class Parser @@ -146,27 +147,16 @@ return null; } - private static Tuple AddressRange(Scope scope) + private static void AddressRange(Scope scope, out int start, out int end) { - var symbol = scope.Symbol ?? throw new ArgumentOutOfRangeException(nameof(scope), "Non-addressable scope used"); - var start = symbol.Value; - return Tuple.Create(start, start + scope.Size - 1); + var symbol = scope.Symbol; + Debug.Assert(symbol != null); + start = symbol.Value; + end = start + scope.Size - 1; } private static bool AddressContained(int address, int start, int end) => (address >= start) && (address <= end); - private static bool AddressContained(int address, Tuple? range) - { - if (range == null) - { - return false; - } - var (start, end) = range; - return AddressContained(address, start, end); - } - - private static bool AddressContained(int address, Scope scope) => AddressContained(address, AddressRange(scope)); - private int LocateScope(int address) { var low = 0; @@ -177,28 +167,26 @@ var mid = low + (high - low) / 2; var scope = this.AddressableScopes[mid]; - var range = AddressRange(scope); + AddressRange(scope, out var start, out var end); - if (AddressContained(address, range)) + if (AddressContained(address, start, end)) { return mid; } - var (_, end) = range; - - // If x greater, ignore left half + // If referenced scope greater, ignore left half if (end < address) { low = mid + 1; } - // If x is smaller, ignore right half + // If referenced scope is smaller, ignore right half else { high = mid - 1; } } - // If we reach here, then element was not present + // If we reach here, then scope was not present return -1; }