Mux8Way16 Chip
Abstraction and Implementation of 8-way 16-bit Multiplexor Chip in Hardware Design Language and Java™.
Mux8Way16 (8-way 16-bit Multiplexor) Chip
Chip name: Mux8Way16
Inputs: a[16],b[16],c[16],d[16],e[16],f[16],g[16],h[16],
sel[3]
Outputs: out[16]
Function: If sel=000 then out=a
else if sel=001 then out=b
else if sel=010 then out=c
...
else if sel=111 then out=h
Comment: The assignment operations mentioned above are all
16-bit. For example, "out=a" means "for i=0..15
out[i]=a[i]".
Implementation of Mux8Way16 Chip in HDL
Implementation of Mux8Way16 Chip in Java™
Last updated