andybendy wrote
I used a series of 16 half adders to implement the INC16 chip and I was just wondering if there was a shorter way using less chips to implement the increment16 chip?
This course is really cool!
The answer depends on exactly what you mean by "less chips".
If you are doing things in order, you should have already implemented the Add16 chip. So consider what the Inc16 functionality is in terms of adding two 16-bit numbers together.
But the real question is whether using a single Add16 chip to implement the Inc16 chip really count as "less chips"?
From the perspective of leveraging hierarchy and functional abstraction, it can be argued that the answer is yes, and since that is the mindset of the course, that might be sufficient for you.
But if you are thinking more along the lines of implementing that functionality with fewer base parts (fewer transistors on a real piece of silicon) or having a smaller propagation delay (a faster part), then the answer is that your implementation using half-adders is much better, despite having a lot more chips at the top level, than using an Add16. But, we can still do a bit better, though we quickly get into the tradeoff between using fewer gates but having a slower part, versus using more gates but getting a faster part. That's the typical tradeoff in digital design.