How do I use clock edge as selector for a mux, what I want to do:
input clk, in1, in2;
output out;
always@ (posedge clk) begin out<=in1; end
always@(negedge clk) begin out<=in2; end
however, this is not synthesisable because of multiple drivers in separate always blocks. Is there any work around?
This should get you what you want. Whether it is a good idea or not depends on what you are doing.