Created
December 5, 2021 15:26
-
-
Save paranlee/931d3cd8d85f1fb43c9a5acc94510414 to your computer and use it in GitHub Desktop.
fulladder_tb result
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 fulladder_tb.v || exit 1 | |
| vvp fulladder.o | |
| a=0x0 b=0x0 c_in=0x0 c_out=0x0 sum=0x0 | |
| a=0x4 b=0x1 c_in=0x1 c_out=0x0 sum=0x6 | |
| a=0x3 b=0x5 c_in=0x1 c_out=0x1 sum=0x1 | |
| a=0x5 b=0x2 c_in=0x1 c_out=0x1 sum=0x0 | |
| a=0x5 b=0x6 c_in=0x1 c_out=0x1 sum=0x4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment