Forum Discussion
Altera_Forum
Honored Contributor
20 years agoDDR SDRAM vs SSRAM
I've develop a project with 3 Nios II processors and 4 on-chip memories and mutexes. And I'm using a Development kit Cyclone II and Quartus and Nios IDE 5.0. Often in my code the processors n...
Altera_Forum
Honored Contributor
20 years agowhile(shared_memory->flag =! OK); (***) mendonca, are you shure: You want to load 'shared_memory->flag' with the inverted value of 'OK' and then check if this is not zero? Or do you want to wait until the flag is '!OK'? If so you have to write: while(shared_memory->flag != OK); Mike