diff options
author | Bogdan Vukobratovic <bogdan.vukobratovic@gmail.com> | 2019-08-03 12:28:46 +0200 |
---|---|---|
committer | Bogdan Vukobratovic <bogdan.vukobratovic@gmail.com> | 2019-08-03 12:28:46 +0200 |
commit | 280c4e7794543e99244aafffc62a2dd4454bcb06 (patch) | |
tree | 25bfb330502afc441af41c0d38c4aa4b6d4b0bbd /tests/opt/opt_share_large_pmux_multipart.v | |
parent | c075486c59155d16ed278922a3752366a95246ff (diff) | |
download | yosys-280c4e7794543e99244aafffc62a2dd4454bcb06.tar.gz yosys-280c4e7794543e99244aafffc62a2dd4454bcb06.tar.bz2 yosys-280c4e7794543e99244aafffc62a2dd4454bcb06.zip |
Fix spacing in opt_share tests, change wording in opt_share help
Diffstat (limited to 'tests/opt/opt_share_large_pmux_multipart.v')
-rw-r--r-- | tests/opt/opt_share_large_pmux_multipart.v | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/tests/opt/opt_share_large_pmux_multipart.v b/tests/opt/opt_share_large_pmux_multipart.v index e7ba318ef..1c460292f 100644 --- a/tests/opt/opt_share_large_pmux_multipart.v +++ b/tests/opt/opt_share_large_pmux_multipart.v @@ -1,24 +1,23 @@ module opt_share_test( - input [15:0] a, - input [15:0] b, - input [15:0] c, - input [15:0] d, - input [2:0] sel, - output reg [15:0] res - ); + input [15:0] a, + input [15:0] b, + input [15:0] c, + input [15:0] d, + input [2:0] sel, + output reg [15:0] res + ); - - always @* begin - case(sel) - 0: res = a + d; - 1: res = a - b; - 2: res = b; - 3: res = b - c; - 4: res = b - a; - 5: res = c; - 6: res = a - c; - default: res = 16'bx; - endcase - end + always @* begin + case(sel) + 0: res = a + d; + 1: res = a - b; + 2: res = b; + 3: res = b - c; + 4: res = b - a; + 5: res = c; + 6: res = a - c; + default: res = 16'bx; + endcase + end endmodule |