uniop_prec.sv 99 Bytes
Newer Older
1 2 3 4 5
module Example(a, b);
    input logic [1:0] a;
    output logic b;
    assign b = !(&a);
endmodule