mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Removed SigSpec::extend_xx() api
This commit is contained in:
parent
327a5d42b6
commit
e62d838bd4
3 changed files with 1 additions and 20 deletions
|
@ -262,7 +262,7 @@ struct ProcArstPass : public Pass {
|
|||
for (auto &chunk : act.first.chunks())
|
||||
if (chunk.wire && chunk.wire->attributes.count("\\init")) {
|
||||
RTLIL::SigSpec value = chunk.wire->attributes.at("\\init");
|
||||
value.extend_xx(chunk.wire->width, false);
|
||||
value.extend_u0(chunk.wire->width, false);
|
||||
arst_sig.append(chunk);
|
||||
arst_val.append(value.extract(chunk.offset, chunk.width));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue