Login  Register

Re: Still lost with Inc16

Posted by cadet1620 on Mar 12, 2016; 6:42pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Still-lost-with-Inc16-tp4029650p4029651.html

sputniza wrote
I do understand that I somehow have to use one Add16 and create a second b input with b[0] = true, b[1..15] = false. But how
Appendix A.5.2, Input Pins, documents constants true and false and A.5.2 shows hoy they work wit buses.
You just need to use exactly what you wrote above:
    ...(..., b[0] = true, b[1..15] = false, ...);

--Mark