2019-07-28 09:03:54 -05:00
|
|
|
module opt_share_test(
|
2019-08-03 05:28:46 -05:00
|
|
|
input [15:0] a,
|
|
|
|
input [15:0] b,
|
|
|
|
input sel,
|
|
|
|
output [15:0] res,
|
|
|
|
);
|
2019-07-28 09:03:54 -05:00
|
|
|
|
2019-08-03 05:28:46 -05:00
|
|
|
assign res = {sel ? a + b : a - b};
|
2019-07-28 09:03:54 -05:00
|
|
|
|
|
|
|
endmodule
|