1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-14 06:42:54 +08:00

Added .ena input to delay.sv

This commit is contained in:
Konstantin Pavlov (fm) 2019-01-09 13:58:20 +03:00
parent 6d933d2ea2
commit 807cc4303d

52
delay.sv Normal file
View File

@ -0,0 +1,52 @@
//------------------------------------------------------------------------------
// delay.v
// Konstantin Pavlov, pavlovconst@gmail.com
//------------------------------------------------------------------------------
// INFO -------------------------------------------------------------------------
// Static Delay for arbitrary signal
// Another equivalent names for this module:
// conveyor.sv
// synchronizer.sv
//
// Tip for Xilinx-based implementations:
// Leave nrst=1'b1 on purpose of inferring Xilinx`s SRL16E/SRL32E primitives
/* --- INSTANTIATION TEMPLATE BEGIN ---
delay S1 (
.clk( clk ),
.nrst( 1'b1 ),
.ena( 1'b1 )
.in( ),
.out( )
);
--- INSTANTIATION TEMPLATE END ---*/
module delay #(
parameter N = 2; // delay/synchronizer chain length
// default length for synchronizer chain is 2
)(
input clk,
input nrst,
input ena,
input in,
output out,
);
(* ASYNC_REG = "TRUE" *) logic [N:0] data = 0;
always_ff @(posedge clk) begin
if (~nrst) begin
data[N:0] <= 0;
end else if (ena) begin
data[N:0] <= {data[N-1:0],in};
end
end
assign
out = data[N];
endmodule