-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrp15_controller.v
More file actions
executable file
·228 lines (185 loc) · 3.57 KB
/
grp15_controller.v
File metadata and controls
executable file
·228 lines (185 loc) · 3.57 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
module controller(go,flag,ld,sel,state,clk,rst);
input go,flag,clk,rst;
output [4:0] ld ;
output [4:0]sel;
output [2:0] state;
wire[2:0] state;
wire [2:0] nextstate;
register_n #(3)r1(nextstate,state,clk,rst);
next_state nxt(state,flag,go,nextstate);
load_sel ls(state,ld,sel);
endmodule
module register_n(in, out, clk,rst);
parameter SIZE=16;
output [SIZE-1:0] out;
input [SIZE-1:0] in;
input clk,rst;
reg [SIZE-1:0] out;
always @(negedge clk)
begin
if (rst) out <= 0;
else out <= in;
end
endmodule
module next_state(
input [2:0] state,
input flag,
input go,
output [2:0] nextstate
);
wire [2:0] nstate;
not n0(nstate[0],state[0]);
not n1(nstate[1],state[1]);
not n2(nstate[2],state[2]);
not n3(ngo,go);
not n4(nflag,flag);
and a1(w1,state[1],state[0]);
and a2(w2,state[2],nstate[1],nstate[0]);
and a3(w3,state[2],nstate[1],flag);
and a4(w4,state[2],nstate[0],go);
or o1(nextstate[2],w1,w2,w3,w4);
and aa1(ww1,state[2],state[0]);
and aa2(ww2,nstate[1],state[0],ngo);
and aa3(ww3,nstate[2],state[1],nstate[0]);
and aa4(ww4,go,nstate[0],state[1]);
or o2(nextstate[1],ww1,ww2,ww3,ww4);
and ab1(wb1,nstate[2],nstate[1],go);
and ab2(wb2,nstate[2],nstate[0],go);
and ab3(wb3,state[2],nstate[0],ngo);
and ab4(wb4,state[2],nstate[1],nflag);
or o3(nextstate[0],wb1,wb2,wb3,wb4);
endmodule
module load_sel(state,ld,sel
);
input [2:0] state;
output [4:0] ld;
output [4:0] sel;
wire [2:0] nstate;
not n0(nstate[0],state[0]);
not n1(nstate[1],state[1]);
not n2(nstate[2],state[2]);
and a1(ld[0],nstate[1],state[0]);
and a2(ld[1],nstate[2],nstate[1],nstate[0]);
and a3(w1,nstate[2],state[0]);
and a4(w2,state[2],nstate[1],nstate[0]);
or or1(ld[2],w1,w2);
and a5(w3,nstate[2],state[1],nstate[0]);
or or2(ld[3],w3,w2);
and a6(w4,nstate[2],nstate[1],state[0]);
or or3(ld[4],w4,w2);
and aa1( sel[0],state[2],nstate[1],state[0]);
and aa2(sel[1],state[2],nstate[1],nstate[0]);
and aa3(ww1,nstate[2],nstate[1],state[0]);
not nn(sel[2],ww1);
not nn2(sel[4],ww1);
and aa4(sel[3],state[2],nstate[1],nstate[0]);
endmodule
module cont_check;
// Inputs
reg go;
reg flag;
reg clk;
reg rst;
// Outputs
wire [4:0] ld;
wire [4:0] sel;
wire [2:0] state;
// Instantiate the Unit Under Test (UUT)
controller uut (
.go(go),
.flag(flag),
.ld(ld),
.sel(sel),
.state(state),
.clk(clk),
.rst(rst)
);
always #10 clk = ~clk;
initial begin
// Initialize Inputs
clk=0;
go = 1;
flag = 0;
rst=1;
#10;
go = 1;
flag = 0;
rst=1;
#10;
go = 1;
flag = 0;
rst=1;
#10;
go = 1;
flag = 0;
rst=1;
#10;
rst=0;
go = 1;
flag = 0;
#10;
go = 1;
flag = 0;
#10;
go = 1;
flag = 0;
#10;
go = 1;
flag = 0;
#10;
go = 0;
flag = 0;
#10;
go = 0;
flag = 0;
#10;
go = 1;
flag = 0;
#10;
go = 1;
flag = 0;
#10;
go = 1;
flag = 0;
#10; go = 1;
flag = 0;
#10; go = 1;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10;
go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10; go = 0;
flag = 0;
#10;
#10; go = 0;
flag = 1;
#10; go = 0;
flag = 1;
#10;
// Add stimulus here
end
endmodule