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