mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-11 09:44:44 +00:00
rtlil: enable single-bit vector wires
This commit is contained in:
parent
f60bbe64ac
commit
ab112b9b6b
12 changed files with 121 additions and 9 deletions
|
@ -1445,7 +1445,11 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint)
|
|||
wire->port_id = port_id;
|
||||
wire->port_input = is_input;
|
||||
wire->port_output = is_output;
|
||||
wire->upto = range_swapped;
|
||||
if (wire->width != 1)
|
||||
wire->upto = range_swapped;
|
||||
else
|
||||
wire->sbvector = is_sbvector;
|
||||
|
||||
wire->is_signed = is_signed;
|
||||
|
||||
for (auto &attr : attributes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue