blob: da9a2f87f21543833b83c8edfb4b421cedd18d53 [file] [log] [blame]
module top
(
input x,
input y,
input z,
input clk,
input A,
output B
);
`ifndef BUG
assign B = (x || y || !z)? (A & z) : ~x;
`else
assign B = z - y + x;
`endif
endmodule