Files
N2T/projects/02/IsNeg.hdl
2020-11-15 13:57:48 -05:00

10 lines
117 B
Plaintext

CHIP IsNeg {
IN in[16];
OUT out;
PARTS:
Not(in=in[15], out=notneg);
Not(in=notneg, out=out);
}