Untitled

Anonymous
plain_text
07/23/2024 7:42 PM
292 B
34
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