public void CopyAddress()
        {
            int sourceEntryAddress  = _source.ReadInt();
            int sourceId            = ConsumeCurrentParentSourceID();
            int sourceObjectAddress = _services.SourceAddressByID(sourceId);
            int entryOffset         = sourceEntryAddress - sourceObjectAddress;
            int targetObjectAddress = _services.TargetAddressByID(_services.StrictMappedID(sourceId
                                                                                           ));

            _target.WriteInt(targetObjectAddress + entryOffset);
        }