Files

6 lines
89 B
Systemverilog
Raw Permalink Normal View History

module top;
wire a, b, x, y;
assign x = a | |b;
assign y = a & &b;
endmodule