Re: Troubles with implementing Incrementer chip
Posted by ybakos on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Troubles-with-implementing-Incrementer-chip-tp698157p698184.html
Think of the symbols true and false being wires... that are one 'bit' wide and on/off.
As for your implementation, note that your hdl is using And16, not Add16 as you describe. Assuming the use of Add16, you'd have to individually wire false and true to each of the 16 connections of b[].
(hint: my implementation uses 16 chips)