mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-27 14:23:37 +00:00
gowin: replace positional arguments in cells_sim.v with named
This commit is contained in:
parent
c7e56da381
commit
07f5307bd4
1 changed files with 4 additions and 4 deletions
|
|
@ -121,7 +121,7 @@ module MUX2_LUT5 (O, I0, I1, S0);
|
||||||
(S0 => O) = (486, 680);
|
(S0 => O) = (486, 680);
|
||||||
endspecify
|
endspecify
|
||||||
|
|
||||||
MUX2 mux2_lut5 (O, I0, I1, S0);
|
MUX2 mux2_lut5 (.O(O), .I0(I0), .I1(I1), .S0(S0));
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module MUX2_LUT6 (O, I0, I1, S0);
|
module MUX2_LUT6 (O, I0, I1, S0);
|
||||||
|
|
@ -135,7 +135,7 @@ module MUX2_LUT6 (O, I0, I1, S0);
|
||||||
(S0 => O) = (478, 723);
|
(S0 => O) = (478, 723);
|
||||||
endspecify
|
endspecify
|
||||||
|
|
||||||
MUX2 mux2_lut6 (O, I0, I1, S0);
|
MUX2 mux2_lut6 (.O(O), .I0(I0), .I1(I1), .S0(S0));
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module MUX2_LUT7 (O, I0, I1, S0);
|
module MUX2_LUT7 (O, I0, I1, S0);
|
||||||
|
|
@ -149,7 +149,7 @@ module MUX2_LUT7 (O, I0, I1, S0);
|
||||||
(S0 => O) = (478, 723);
|
(S0 => O) = (478, 723);
|
||||||
endspecify
|
endspecify
|
||||||
|
|
||||||
MUX2 mux2_lut7 (O, I0, I1, S0);
|
MUX2 mux2_lut7 (.O(O), .I0(I0), .I1(I1), .S0(S0));
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module MUX2_LUT8 (O, I0, I1, S0);
|
module MUX2_LUT8 (O, I0, I1, S0);
|
||||||
|
|
@ -163,7 +163,7 @@ module MUX2_LUT8 (O, I0, I1, S0);
|
||||||
(S0 => O) = (478, 723);
|
(S0 => O) = (478, 723);
|
||||||
endspecify
|
endspecify
|
||||||
|
|
||||||
MUX2 mux2_lut8 (O, I0, I1, S0);
|
MUX2 mux2_lut8 (.O(O), .I0(I0), .I1(I1), .S0(S0));
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_flop, lib_whitebox *)
|
(* abc9_flop, lib_whitebox *)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue