Decoder

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

////////////////////////////////////////////////////////////////////////////////

//
module deocr(a,b,c,d,e,f);
input a,b;
output c,d,e,f;
and a1(c,~a,~b);
and a2(d,a,~a);
and a3(e,b,~b);
and a4(f,a,b);
endmodule

You might also like