Altera_Forum
Honored Contributor
18 years agoproblem with resource sharing.......
i've a piece of hardware which does something like this:
a<= b xor c; d<= e xor b xor c; f<= g xor e xor b xor c; i do all these operations in 1 clk cycle....... but synthesizer does something like this....... a <= b xor c; d <= e xor a; f <= g xor d; this works fine in functional , post- tran and post -map... however in post par i get errors due to feedback...... can i somehow ask the synthesizer to not to share resource?