-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparalleladder.v
160 lines (153 loc) · 2.33 KB
/
paralleladder.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
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
//3-bit parallel adder using full adder
module full_adderb(input A,B,Cin,output reg S,Cout);
always@(A,B,Cin)
begin
S = A^B^Cin;
Cout = (A&B)|(B&Cin)|(A&Cin);
end
endmodule
module paradd(input a1,a2,a3,b1,b2,b3,output a,b,c,d);
wire w1,w2,w3;
full_adderb f1(d,w3,a1,b1,0);
full_adderb f2(c,w2,a2,b2,w3);
full_adderb f3(b,w1,a3,b3,w2);
assign a = w1;
endmodule
//testbench all values without loop
module bit3paradd();
reg a,b,c,d,e,f;
wire w,x,y,z;
paradd dut(.a1(a),.a2(b),.a3(c),
.b1(d),.b2(e),.b3(f),.a(w),.b(x),.c(y),.d(z));
initial begin
a=0;b=0;c=0;d=0;e=0;f=0;
#5
a=0;b=0;c=0;d=0;e=0;f=1;
#5
a=0;b=0;c=0;d=0;e=1;f=0;
#5
a=0;b=0;c=0;d=0;e=1;f=1;
#5
a=0;b=0;c=0;d=1;e=0;f=0;
#5
a=0;b=0;c=0;d=1;e=0;f=1;
#5
a=0;b=0;c=0;d=1;e=1;f=0;
#5
a=0;b=0;c=0;d=1;e=1;f=1;
#5
a=0;b=0;c=1;d=0;e=0;f=0;
#5
a=0;b=0;c=1;d=0;e=0;f=1;
#5
a=0;b=0;c=1;d=0;e=1;f=0;
#5
a=0;b=0;c=1;d=0;e=1;f=1;
#5
a=0;b=0;c=1;d=1;e=0;f=0;
#5
a=0;b=0;c=1;d=1;e=0;f=1;
#5
a=0;b=0;c=1;d=1;e=1;f=0;
#5
a=0;b=0;c=1;d=1;e=1;f=1;
#5
a=0;b=1;c=0;d=0;e=0;f=0;
#5
a=0;b=1;c=0;d=0;e=0;f=1;
#5
a=0;b=1;c=0;d=0;e=1;f=0;
#5
a=0;b=1;c=0;d=0;e=1;f=1;
#5
a=0;b=1;c=0;d=1;e=0;f=0;
#5
a=0;b=1;c=0;d=1;e=0;f=1;
#5
a=0;b=1;c=0;d=1;e=1;f=0;
#5
a=0;b=1;c=0;d=1;e=1;f=1;
#5
a=0;b=1;c=1;d=0;e=0;f=0;
#5
a=0;b=1;c=1;d=0;e=0;f=1;
#5
a=0;b=1;c=1;d=0;e=1;f=0;
#5
a=0;b=1;c=1;d=0;e=1;f=1;
#5
a=0;b=1;c=1;d=1;e=0;f=0;
#5
a=0;b=1;c=1;d=1;e=0;f=1;
#5
a=0;b=1;c=1;d=1;e=1;f=0;
#5
a=0;b=1;c=1;d=1;e=1;f=1;
#5
a=1;b=0;c=0;d=0;e=0;f=0;
#5
a=1;b=0;c=0;d=0;e=0;f=1;
#5
a=1;b=0;c=0;d=0;e=1;f=0;
#5
a=1;b=0;c=0;d=0;e=1;f=1;
#5
a=1;b=0;c=0;d=1;e=0;f=0;
#5
a=1;b=0;c=0;d=1;e=0;f=1;
#5
a=1;b=0;c=0;d=1;e=1;f=0;
#5
a=1;b=0;c=0;d=1;e=1;f=1;
#5
a=1;b=0;c=1;d=0;e=0;f=0;
#5
a=1;b=0;c=1;d=0;e=0;f=1;
#5
a=1;b=0;c=1;d=0;e=1;f=0;
#5
a=1;b=0;c=1;d=0;e=1;f=1;
#5
a=1;b=0;c=1;d=1;e=0;f=0;
#5
a=1;b=0;c=1;d=1;e=0;f=1;
#5
a=1;b=0;c=1;d=1;e=1;f=0;
#5
a=1;b=0;c=1;d=1;e=1;f=1;
#5
a=1;b=1;c=0;d=0;e=0;f=0;
#5
a=1;b=1;c=0;d=0;e=0;f=1;
#5
a=1;b=1;c=0;d=0;e=1;f=0;
#5
a=1;b=1;c=0;d=0;e=1;f=1;
#5
a=1;b=1;c=0;d=1;e=0;f=0;
#5
a=1;b=1;c=0;d=1;e=0;f=1;
#5
a=1;b=1;c=0;d=1;e=1;f=0;
#5
a=1;b=1;c=0;d=1;e=1;f=1;
#5
a=1;b=1;c=1;d=0;e=0;f=0;
#5
a=1;b=1;c=1;d=0;e=0;f=1;
#5
a=1;b=1;c=1;d=0;e=1;f=0;
#5
a=1;b=1;c=1;d=0;e=1;f=1;
#5
a=1;b=1;c=1;d=1;e=0;f=0;
#5
a=1;b=1;c=1;d=1;e=0;f=1;
#5
a=1;b=1;c=1;d=1;e=1;f=0;
#5
a=1;b=1;c=1;d=1;e=1;f=1;
#5
$stop;
end
endmodule