namespace NESDecompiler.Core.Decompilation;
///
/// A set of code that may contain executable code
///
/// Where the first byte of the region can be found from the CPU's memory map
/// The set of data to pull code out of
public record CodeRegion(ushort BaseAddress, ReadOnlyMemory Bytes);