3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Fix syntax error in adff2dff.v

Fixes #2600.
This commit is contained in:
Marcelina Kościelnicka 2021-02-23 12:12:37 +01:00
parent f4f471f342
commit cde73428b0

View file

@ -11,7 +11,7 @@ module adff2dff (CLK, ARST, D, Q);
(* force_downto *)
output reg [WIDTH-1:0] Q;
(* force_downto *)
wire reg [WIDTH-1:0] NEXT_Q;
reg [WIDTH-1:0] NEXT_Q;
wire [1023:0] _TECHMAP_DO_ = "proc;;";