Last active
December 5, 2021 15:13
-
-
Save paranlee/f0cb776a31688e0b53d5d6fd1b77e0fa to your computer and use it in GitHub Desktop.
fulladder.v
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module fulladder #( | |
| parameter width = 2 | |
| ) ( | |
| input [width:0] a, | |
| input [width:0] b, | |
| input c_in, | |
| output c_out, | |
| output [width:0] sum | |
| ); | |
| assign { c_out, sum } = a + b + c_in; | |
| endmodule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| iverilog -o fulladder.o fulladder.v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment