1 |
3 |
rozpruwacz |
//////////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// WISHBONE SD Card Controller IP Core ////
|
4 |
|
|
//// ////
|
5 |
|
|
//// edge_detect.v ////
|
6 |
|
|
//// ////
|
7 |
|
|
//// This file is part of the WISHBONE SD Card ////
|
8 |
|
|
//// Controller IP Core project ////
|
9 |
|
|
//// http://www.opencores.org/cores/xxx/ ////
|
10 |
|
|
//// ////
|
11 |
|
|
//// Description ////
|
12 |
|
|
//// Signal edge detection. If input signal transitions between ////
|
13 |
|
|
//// two states, output signal is generated for one clock cycle. ////
|
14 |
|
|
//// ////
|
15 |
|
|
//// Author(s): ////
|
16 |
|
|
//// - Marek Czerski, ma.czerski@gmail.com ////
|
17 |
|
|
//// ////
|
18 |
|
|
//////////////////////////////////////////////////////////////////////
|
19 |
|
|
//// ////
|
20 |
|
|
//// Copyright (C) 2013 Authors ////
|
21 |
|
|
//// ////
|
22 |
|
|
//// This source file may be used and distributed without ////
|
23 |
|
|
//// restriction provided that this copyright statement is not ////
|
24 |
|
|
//// removed from the file and that any derivative work contains ////
|
25 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
26 |
|
|
//// ////
|
27 |
|
|
//// This source file is free software; you can redistribute it ////
|
28 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
29 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
30 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
31 |
|
|
//// later version. ////
|
32 |
|
|
//// ////
|
33 |
|
|
//// This source is distributed in the hope that it will be ////
|
34 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
35 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
36 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
37 |
|
|
//// details. ////
|
38 |
|
|
//// ////
|
39 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
40 |
|
|
//// Public License along with this source; if not, download it ////
|
41 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
42 |
|
|
//// ////
|
43 |
|
|
//////////////////////////////////////////////////////////////////////
|
44 |
|
|
|
45 |
|
|
module edge_detect (
|
46 |
|
|
input rst,
|
47 |
|
|
input clk,
|
48 |
|
|
input sig,
|
49 |
|
|
output rise,
|
50 |
|
|
output fall
|
51 |
|
|
);
|
52 |
|
|
|
53 |
|
|
reg [1:0] sig_reg;
|
54 |
|
|
|
55 |
|
|
always @(posedge clk or posedge rst)
|
56 |
|
|
if (rst == 1'b1)
|
57 |
|
|
sig_reg <= 2'b00;
|
58 |
|
|
else
|
59 |
|
|
sig_reg <= {sig_reg[0], sig};
|
60 |
|
|
|
61 |
|
|
assign rise = sig_reg[0] == 1'b1 && sig_reg[1] == 1'b0 ? 1'b1 : 1'b0;
|
62 |
|
|
assign fall = sig_reg[0] == 1'b0 && sig_reg[1] == 1'b1 ? 1'b1 : 1'b0;
|
63 |
|
|
|
64 |
|
|
endmodule
|