Files
nand2tetris/projects/01/Or16.hdl
2023-03-22 19:51:12 +01:00

19 lines
421 B
Plaintext

// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/01/Or16.hdl
/**
* 16-bit bitwise Or:
* for i = 0..15 out[i] = (a[i] or b[i])
*/
CHIP Or16 {
IN a[16], b[16];
OUT out[16];
PARTS:
Not16(in=a,out=nota);
Not16(in=b,out=notb);
Nand16(a=nota,b=notb,out=out);
}