Given an RTLIL::Wire
which is assigned to "piecewise", is it possible to find all of the pieces?
#4286
Answered
by
gussmith23
gussmith23
asked this question in
Q&A
-
As a very simple example: module top(output [1:0] out, input a,b);
assign out[0] = a;
assign out[1] = b;
endmodule If I have the |
Beta Was this translation helpful? Give feedback.
Answered by
gussmith23
Mar 18, 2024
Replies: 1 comment
-
Ah, nevermind, answered my own question -- it seems like I can't do |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gussmith23
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah, nevermind, answered my own question -- it seems like I can't do
sigmap
directly on the wire itself, but if I first convert the wire to aSigSpec
, thensigmap
does what I expected it to do.