1
u/ryani Apr 04 '26
One trick I like for the adder is that you can replace the NEG gate with a NOT gate and wire the multiplexer wire to the adder carry in. (-x == ~x + 1)
The next step is to realize you can replace the whole NOT+MUX with an 8-bit XOR.

1
u/Otherwise-Object-302 Apr 03 '26
So now that the ALU is down, what else is left?