Untitled

Anonymous
plain_text
07/23/2024 8:09 PM
220 B
21
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