Re: NEW TO THE PROJECT!!!

Posted by RicheeRich on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/NEW-TO-THE-PROJECT-tp4025215p4025226.html

Would the answer for chip Not be:

Chip Not{
  IN a
  IN b
  OUT out

Nand(a=false, b=false, out=true)
Nand(a=false, b=true, out=true)
Nand(a=true, b=false, out=true)
Nand(a=true, b=true, out=false)
}

?????????????????????????????????????????????????