解多工器(Demultiplexer,DMUX)
或稱資料分配器(data distributor) :
1.它主要是將一組輸入信號,
從多組輸出端當中,選擇一組發送出去的電路,是一種一對多的電路。
2.如Dmux具有n 條選擇線,
則有1 條輸入線與2^n 條輸出線,輸入與輸出關係為1:2^n。
CHIP DMux
{
IN in, Sel;
OUT a, b;
PARTS:
Not(in=Sel, out=notSel);
And(a=notSel, b=in, out=a);
And(a=Sel, b=in, out=b);
}