MakeTimingModel

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2023-02-18 17:24:09 -07:00
parent 5d45a07e34
commit 943ac0f17b
1 changed files with 2 additions and 1 deletions

View File

@ -607,7 +607,8 @@ MakeTimingModel::makeGateModelTable(const Pin *output_pin,
TableModel *slew_model = new TableModel(slew_table, tbl_template,
ScaleFactorType::cell, rf);
GateTableModel *gate_model = new GateTableModel(delay_model, nullptr,
slew_model, nullptr);
slew_model, nullptr,
nullptr, nullptr);
return gate_model;
}
}