mirror of
https://github.com/usatiuk/nand2tetris.git
synced 2025-10-29 00:27:49 +01:00
init
This commit is contained in:
17
tools/builtInChips/And16.hdl
Normal file
17
tools/builtInChips/And16.hdl
Normal file
@@ -0,0 +1,17 @@
|
||||
// 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/And16.hdl
|
||||
|
||||
/**
|
||||
* 16-bit-wise And gate: for i = 0..15: out[i] = a[i] and b[i]
|
||||
*/
|
||||
|
||||
CHIP And16 {
|
||||
|
||||
IN a[16], b[16];
|
||||
OUT out[16];
|
||||
|
||||
BUILTIN And;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user