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