File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
// ------------------------------------------------------------------------------
2
- // EdgeDetect .sv
2
+ // edge_detect .sv
3
3
// Konstantin Pavlov, [email protected]
4
4
// ------------------------------------------------------------------------------
5
5
14
14
15
15
/* --- INSTANTIATION TEMPLATE BEGIN ---
16
16
17
- EdgeDetect ED1[31:0] (
17
+ edge_detect ED1[31:0] (
18
18
.clk( {32{clk}} ),
19
19
.nrst( {32{1'b1}} ),
20
20
.in( in[31:0] ),
@@ -26,7 +26,7 @@ EdgeDetect ED1[31:0] (
26
26
--- INSTANTIATION TEMPLATE END ---*/
27
27
28
28
29
- module EdgeDetect (
29
+ module edge_detect (
30
30
input clk,
31
31
input nrst,
32
32
Original file line number Diff line number Diff line change 1
1
// ------------------------------------------------------------------------------
2
- // EdgeDetect_tb .sv
2
+ // edge_detect_tb .sv
3
3
// Konstantin Pavlov, [email protected]
4
4
// ------------------------------------------------------------------------------
5
5
8
8
9
9
`timescale 1ns / 1ps
10
10
11
- module EdgeDetect_tb ();
11
+ module edge_detect_tb ();
12
12
13
13
logic clk200;
14
14
initial begin
71
71
72
72
// Module under test ==========================================================
73
73
74
- EdgeDetect ED1 [15 :0 ] (
74
+ edge_detect ED1 [15 :0 ] (
75
75
.clk ( { 16 { clk200}} ),
76
76
.nrst ( { 16 { nrst_once}} ),
77
77
.in ( RandomNumber1[15 : 0 ] ),
You can’t perform that action at this time.
0 commit comments