forked from aolofsson/oh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
oh_stretcher.v
31 lines (23 loc) · 1.09 KB
/
oh_stretcher.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//#############################################################################
//# Purpose: Stretches a pulse by DW+1 clock cycles #
//# Adds one cycle latency #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_stretcher #(parameter CYCLES = 5) // "wakeup" cycles
( input clk, // clock
input in, // input pulse
input nreset, // async active low reset
output out // stretched output pulse
);
reg [CYCLES-1:0] valid;
always @ (posedge clk or negedge nreset)
if(!nreset)
valid[CYCLES-1:0] <='b0;
else if(in)
valid[CYCLES-1:0] <={(CYCLES){1'b1}};
else
valid[CYCLES-1:0] <={valid[CYCLES-2:0],1'b0};
assign out = valid[CYCLES-1];
endmodule // oh_stretcher