blob: 1e0efbafd6477ead64d638953b37a4cd97f56165 [file] [log] [blame]
module top
(
input x,
input y,
input cin,
input clk,
output A,
output cout
);
`ifndef BUG
assign A = y + cin;
assign cout = y + A;
`else
assign {cout,A} = cin - y * x;
`endif
endmodule