DMux(Demultiplexer-解多工器)

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);
}

results matching ""

    No results matching ""