blob: 676d1f42fbe905b44c970e43719ff3efed54a2f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: tools/builtIn/Mux16.hdl
/**
* 16 bit multiplexor. If sel == 1 then out = b else out = a.
*/
CHIP Mux16 {
IN a[16], b[16], sel;
OUT out[16];
BUILTIN Mux;
}
|