3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 09:34:09 +00:00

simlib: Simplify recently changed $mux model

The use of a procedural continuous assignment introduced in #3526 was
unintended and is completely unnecessary for the actual change of that
PR.
This commit is contained in:
Jannis Harder 2022-10-28 19:48:00 +02:00
parent 518194fac1
commit aa7e7df19f

View file

@ -1279,11 +1279,9 @@ parameter WIDTH = 0;
input [WIDTH-1:0] A, B;
input S;
output reg [WIDTH-1:0] Y;
output [WIDTH-1:0] Y;
always @* begin
assign Y = S ? B : A;
end
assign Y = S ? B : A;
endmodule