2018-08-01 07:00:37 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2018-12-11 15:34:14 +03:00
|
|
|
// edge_detect.sv
|
2018-07-29 08:14:23 +03:00
|
|
|
// Konstantin Pavlov, pavlovconst@gmail.com
|
2018-08-01 07:00:37 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2018-07-29 08:14:23 +03:00
|
|
|
|
2018-08-01 07:00:37 +03:00
|
|
|
// INFO ------------------------------------------------------------------------
|
2018-12-04 12:33:26 +03:00
|
|
|
// Edge detector, ver.2
|
|
|
|
// Combinational implementation (zero ticks delay)
|
|
|
|
//
|
|
|
|
// In case when "in" port has toggle rate 100% (changes every clock period)
|
|
|
|
// "rising" and "falling" outputs will completely replicate input
|
|
|
|
// "both" output will be always active in this case
|
2018-07-29 08:14:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
|
|
|
|
2018-12-11 15:34:14 +03:00
|
|
|
edge_detect ED1[31:0] (
|
2018-12-04 12:33:26 +03:00
|
|
|
.clk( {32{clk}} ),
|
|
|
|
.nrst( {32{1'b1}} ),
|
|
|
|
.in( in[31:0] ),
|
|
|
|
.rising( out[31:0] ),
|
2018-07-29 08:14:23 +03:00
|
|
|
.falling( ),
|
|
|
|
.both( )
|
|
|
|
);
|
|
|
|
|
|
|
|
--- INSTANTIATION TEMPLATE END ---*/
|
|
|
|
|
|
|
|
|
2018-12-11 15:34:14 +03:00
|
|
|
module edge_detect(
|
2018-07-29 08:14:23 +03:00
|
|
|
input clk,
|
|
|
|
input nrst,
|
|
|
|
|
2018-12-04 12:33:26 +03:00
|
|
|
input in,
|
|
|
|
output logic rising,
|
|
|
|
output logic falling,
|
|
|
|
output logic both
|
2018-07-29 08:14:23 +03:00
|
|
|
);
|
|
|
|
|
2018-12-04 12:33:26 +03:00
|
|
|
logic in_d = 0;
|
2018-07-29 08:14:23 +03:00
|
|
|
always_ff @(posedge clk) begin
|
2018-08-01 07:00:37 +03:00
|
|
|
if ( ~nrst ) begin
|
2018-12-04 12:33:26 +03:00
|
|
|
in_d <= 0;
|
|
|
|
end else begin
|
|
|
|
in_d <= in;
|
2018-08-01 07:00:37 +03:00
|
|
|
end
|
2018-07-29 08:14:23 +03:00
|
|
|
end
|
|
|
|
|
2018-12-04 12:33:26 +03:00
|
|
|
always_comb begin
|
|
|
|
rising = nrst && (in && ~in_d);
|
|
|
|
falling = nrst && (~in && in_d);
|
|
|
|
both = nrst && (rising || falling);
|
|
|
|
end
|
2018-07-29 08:14:23 +03:00
|
|
|
|
|
|
|
endmodule
|