/* * Copyright 2018 faddenSoft * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; using System.Diagnostics; namespace Asm65 { /// /// Small utility functions. /// public static class Helper { /// /// Computes the target address of an 8-bit relative branch instruction. /// /// 24-bit address of branch instruction opcode. /// Branch operand. /// Target address. public static int RelOffset8(int addr, sbyte branchOffset) { // Branch is relative to the start of the following instruction, so add 2. // Branches wrap around the current bank (in both directions), and the target // is in the same bank as source addr. Debug.Assert(addr >= 0 && addr <= 0xffffff); int target = (addr + 2 + branchOffset) & 0xffff; target |= addr & 0x7fff0000; return target; } /// /// Computes the target address of a 16-bit relative branch instruction. /// /// 24-bit address of branch instruction opcode. /// Branch operand. /// Target address. public static int RelOffset16(int addr, short branchOffset) { // Branch is relative to the start of the following instruction, so add 3. // Branches wrap around the current bank (in both directions), and the target // is in the same bank as source addr. Debug.Assert(addr >= 0 && addr <= 0xffffff); int target = (addr + 3 + branchOffset) & 0xffff; target |= addr & 0x7fff0000; return target; } /// /// Determines whether a range of bytes is composed of a single value. If so, the /// value is returned. /// /// Bytes to examine. /// Start offset. /// Number of bytes. Must be greater than zero. /// The value found, or -1 if multiple values were found. public static int CheckRangeHoldsSingleValue(byte[] data, int offset, int length) { Debug.Assert(data != null); Debug.Assert(offset >= 0 && offset < data.Length); Debug.Assert(length >= 0 && offset + length <= data.Length); if (length < 0) { return -1; } byte testVal = data[offset++]; while (--length > 0) { if (data[offset++] != testVal) { return -1; } } return testVal; } } }