blob: 5e9f33ec195ee60b1c00bda6f7d7f1fe27971907 [file] [log] [blame]
module top
(
input x,
input y,
input cin,
output A,
output cout
);
`ifndef BUG
assign {cout,A} = cin % y / x;
`else
assign {cout,A} = 2'bZZ;
`endif
endmodule