Untitled

 avatar
unknown
plain_text
a year ago
163 B
8
Indexable
module yMux(z, a, b, c);
    parameter SIZE = 2;
    output [SIZE-1: 0] z;
    input [SIZE-1:0] a, b;
    input c;
    yMux1 mine[SIZE-1:0] (z, a, b, c);
endmodule
Editor is loading...
Leave a Comment