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