Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F25856513
adder32.v
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Size
207 B
Referenced Files
None
Subscribers
None
adder32.v
View Options
module
adder32
(
A
,
B
,
Ci
,
S
,
Co
);
input
[
31
:
0
]
A
;
input
[
31
:
0
]
B
;
input
Ci
;
output
[
31
:
0
]
S
;
output
Co
;
wire
[
32
:
0
]
Sum33
;
assign
Sum33
=
A
+
B
+
Ci
;
assign
S
=
Sum33
[
31
:
0
]
;
assign
Co
=
Sum33
[
32
]
;
endmodule
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Aug 29, 2:23 PM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
375686
Default Alt Text
adder32.v (207 B)
Attached To
Mode
R231 SoC_I-Edge_yosys_nem_optimization
Attached
Detach File
Event Timeline
Log In to Comment