John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Links: Computer Gates

DMux Gate

Notes

1
2
3
4
5
6
7
8
9
CHIP DMux {
	IN in, sel;
	OUT a, b;

	PARTS:
	Not(in=sel, out=notSel);
	And(a=in, b=notSel, out=a);
	And(a=in, b=sel, out=b);
}

Truth Table

in sel a b
0 0 0 0
0 1 0 0
1 0 1 0
1 1 0 1


Interactive Graph