Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
Re: what is the exact difference between decoder and demulti
It will look very much like the decoder. I think only difference is:
In the Demux you select one of outputs and drive it by the input.
DEMUX(i, s[0:1], o[0:3]) -->
if (s=00) o[0] = i;
if (s=01) o[1] = i;
if (s=10) o[2] = i;
if (s=11) o[3] = i;
But in the decoder you activate one of outputs based on decoded inputs.
Decoder(s[0:1], o[0:3]) -->
if (s=00) o[0:3] = 1000;
if (s=01) o[0:3] = 0100;
if (s=10) o[0:3] = 0010;
if (s=11) o[0:3] = 0001;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.