-
Notifications
You must be signed in to change notification settings - Fork 0
/
rg.v
65 lines (57 loc) · 932 Bytes
/
rg.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 10.10.2024 20:28:22
// Design Name:
// Module Name: rg
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module rg(
input CLK,
input [2:0] D,
input RST,
input EN,
output [2:0] Q
);
wire QD;
dtr inst_dtr_2(
.CLK(CLK),
.D(D[2]),
.RST(RST),
.EN(EN),
.Q(QD)
);
dtr inst_dtr_1(
.CLK(CLK),
.D(D[1]),
.RST(RST),
.EN(EN),
.Q(Q[1])
);
dtr inst_dtr_0(
.CLK(CLK),
.D(D[0]),
.RST(RST),
.EN(EN),
.Q(Q[0])
);
dtr inst_dtr(
.CLK(CLK),
.D(QD),
.RST(RST),
.EN(EN),
.Q(Q[0])
);
endmodule