Refactor tests
[SymbiYosys.git] / tests / unsorted / redxor.v
1 module test(input [7:0] I, output O);
2 assign O = ^I;
3
4 always @(*) begin
5 cover(O==1'b0);
6 cover(O==1'b1);
7 end
8 endmodule