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