Untitled

 avatar
unknown
plain_text
a year ago
219 B
10
Indexable
module yMux1(z, a, b, c);
    output z;
    input a, b, c;
    wire notC, upper, lower;

    not my_not(notC, c);
    and upperAnd(upper, a, notC);
    and lowerAnd(lower, c, b);
    or my_or(z, upper, lower);
endmodule
Editor is loading...
Leave a Comment