File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ wire nrst = ~rst;
34
34
wire [31 :0 ] DerivedClocks;
35
35
ClkDivider CD1 (
36
36
.clk(clk200),
37
- .nrst,
37
+ .nrst(nrst) ,
38
38
.out(DerivedClocks[31 :0 ]));
39
39
defparam CD1.WIDTH = 32 ;
40
40
41
41
wire [31 :0 ] E_DerivedClocks;
42
42
EdgeDetect ED1 (
43
43
.clk(clk200),
44
- .nrst,
44
+ .nrst(nrst) ,
45
45
.in(DerivedClocks[31 :0 ]),
46
46
.rising(E_DerivedClocks[31 :0 ]),
47
47
.falling(),
74
74
wire p,m;
75
75
Encoder E1 (
76
76
.clk(clk200),
77
- .nrst,
77
+ .nrst(nrst) ,
78
78
.incA(RandomNumber1[0 ]),
79
79
.incB(RandomNumber1[1 ]),
80
80
.plus1(p),
Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ wire nrst = ~rst;
34
34
wire [31 :0 ] DerivedClocks;
35
35
ClkDivider CD1 (
36
36
.clk(clk200),
37
- .nrst,
37
+ .nrst(nrst) ,
38
38
.out(DerivedClocks[31 :0 ]));
39
39
defparam CD1.WIDTH = 32 ;
40
40
41
41
wire [31 :0 ] E_DerivedClocks;
42
42
EdgeDetect ED1 (
43
43
.clk(clk200),
44
- .nrst,
44
+ .nrst(nrst) ,
45
45
.in(DerivedClocks[31 :0 ]),
46
46
.rising(E_DerivedClocks[31 :0 ]),
47
47
.falling(),
Original file line number Diff line number Diff line change 11
11
** DeBounce.v** - two-cycle debounce for input buttons
12
12
** DynDelay.v** - dynamic delay made on general-purpose trigger elements
13
13
** EdgeDetect.v** - edge detector, gives one-tick pulses on every signal edge
14
- ** Encoder.v** encoder input module
14
+ ** Encoder.v** encoder input module
15
15
** PulseGen.v** - generates pulses with given width and delay
16
16
** ResetSet.v** - SR trigger variant w/o metastable state, set dominates here
17
17
** SetReset.v** - SR trigger variant w/o metastable state, reset dominates here
You can’t perform that action at this time.
0 commit comments