10 lines
131 B
Plaintext
Executable File
10 lines
131 B
Plaintext
Executable File
CHIP Or {
|
|
IN a, b;
|
|
OUT out;
|
|
|
|
PARTS:
|
|
Not(in=a,out=nota);
|
|
Not(in=b,out=notb);
|
|
Nand(a=nota,b=notb,out=out);
|
|
}
|