Forum Discussion
Altera_Forum
Honored Contributor
20 years agoCache bypass
Hello all, I'm developing an application with two or more Nios II processors. There is a scheduller that select a thread to execute on a specific cpu. Any thread can run on any cpu. However, t...
Altera_Forum
Honored Contributor
20 years agoThanks Slacker and Paolo,
I used the -mbypass-cache flag to compiler and linker. All references to ldw/stw instructions were changed to ldwio/stwio. In processors with a data cache, the ldwio/stwio instructions bypasses the cache. This solves the problem! Thanks!!