Forum Discussion
Altera_Forum
Honored Contributor
13 years agoA big bug?
Hi, Here is a simple program:# include <stdio.h># include <io.h># include "sys/alt_stdio.h"# include "alt_types.h"# include "system.h" alt_u8 SND[1100]; int main() { int i; ...
Altera_Forum
Honored Contributor
13 years agoHi,
Thank you all of the persons replaied.. As you mentioned that Nios does not support mismatch.Now I try to align SND[1100] to word in my actual project:# pragma align 4 alt_u8 SND[1100]; There was no warning during building and the address was 67389634 ( % 4=2) not my expected. Is there any way to solve this problem.