Untitled
unknown
plain_text
a year ago
207 B
3
Indexable
module Demux(Y0,Y1,Y2,Y3,S0,S1,D); input S0, S1,D; output Y0,Y1,Y2,Y3; assign Y0 = D & (~S1) & (~S0); assign Y1 = D & (~S1) & (S0); assign Y2 = D & (S1) & (~S0); assign Y3 = D & (S1) & (S0); endmodule
Editor is loading...
Leave a Comment