Skip to content

Commit d39ccb2

Browse files
committed
Added paramater to instantiation template of delay.sv
1 parent 807cc43 commit d39ccb2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

delay.sv

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@
99
// conveyor.sv
1010
// synchronizer.sv
1111
//
12-
// Tip for Xilinx-based implementations:
13-
// Leave nrst=1'b1 on purpose of inferring Xilinx`s SRL16E/SRL32E primitives
12+
// Tip for Xilinx-based implementations: Leave nrst=1'b1 and ena=1'b1 on
13+
// purpose of inferring Xilinx`s SRL16E/SRL32E primitives
14+
1415

1516
/* --- INSTANTIATION TEMPLATE BEGIN ---
1617
17-
delay S1 (
18+
delay #(
19+
.N( 2 )
20+
) S1 (
1821
.clk( clk ),
1922
.nrst( 1'b1 ),
2023
.ena( 1'b1 )

0 commit comments

Comments
 (0)