Altera_Forum
Honored Contributor
15 years agoHow to synthesis parallel circuit?
The codes here:
always @(posedge clk or negedge rst)begin if(!rst)begin ..... end else begin if(a) .... if(b) .... if(c) .... end end I found that the synthesised circuit is priority,i.e.there are selectors.But I want them to be parallel!How can I do with that? Please! (the synthesis attributes like "synthesis parallel_case","synthesis full_case" are adapt to the "cae"sentence,not "if" sentence.)