Forum Discussion
Altera_Forum
Honored Contributor
12 years agohow can i access the output
my custom logic takes 26 clk cycles to produce the output, how can i access the output just it finish processing the inputs.
Altera_Forum
Honored Contributor
12 years agoDid you mean a function like this:
void wait(int t) { int i; volatile int x, *y = &x; for (i=1;i<t+1;i++) { (void) *y; } }