URL
https://opencores.org/ocsvn/md5/md5/trunk
[/] [md5/] [trunk/] [add32.v] - Diff between revs 2 and 4
Show entire file |
Details |
Blame |
View Log
Rev 2 |
Rev 4 |
Line 1... |
Line 1... |
|
/*******************************************************
|
|
* 32 bit Adder
|
|
*
|
|
*******************************************************/
|
|
|
|
|
|
module add32 (
|
|
In0,
|
|
In1,
|
|
Out
|
|
);
|
|
|
|
input [31:0] In0;
|
|
input [31:0] In1;
|
|
|
|
output [31:0] Out;
|
|
|
|
wire [31:0] Out;
|
|
|
|
assign Out[31:0] = In0 + In1;
|
|
|
|
endmodule
|
|
|
|
|
No newline at end of file
|
No newline at end of file
|
© copyright 1999-2025
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.