private void RollForwardOnFile(IECUFile file2Rollback, TransactionEntry entry) { int addressToWrite = entry.SymbolAddress; while (addressToWrite > file2Rollback.GetFileInfo().Filelength) addressToWrite -= file2Rollback.GetFileInfo().Filelength; file2Rollback.WriteDataNoLog(entry.DataAfter, (uint)addressToWrite); }