F
friend.05@gmail.com
Guest
Hi,
I want to generalise, following expression.
2 input:
out = a | (a & b);
3 input :
out = a | (a & b) | (a & b & c);
4 input :
out = a | (a & b) | (a & b & c) | (a & b & c & d);
How to parameterized this design. Expression goes on increasing as
input increases.
I want to generalise, following expression.
2 input:
out = a | (a & b);
3 input :
out = a | (a & b) | (a & b & c);
4 input :
out = a | (a & b) | (a & b & c) | (a & b & c & d);
How to parameterized this design. Expression goes on increasing as
input increases.