If I've got an array of 9 wires, is there an easy way to make a new wire that is high if exactly one of the 9 is high? I know I could do
wire[8:0] data;
wire exactlyOneActive;
assign exactlyOneActive = (data[0] & !data[1] & !data[2] ...) |
(!data[0] & data[1] & !data[2] ...) |
(!data[0] & !data[1] & data[2] ...) |
...etc
but, yuck, right? Especially since the nine wires will probably be 25 at some point. Any better way to do this, maybe using generate? It has to be synthesizable too.