I am using Icarus Verilog to simulate a 32-bit processor with 32-bit register size. When I convert my executable files to a VMEM file I get the following warning message:

The VMem output format uses 32-bit data, but unaligned data is present. Use a "--fill 0xNN --within --range-padding 4" filter to fix this problem.

My compiler is supposed to align the data i don't know what is causing this problem. Since it is a warning, the file was generated but when standard library newlib (malloc and free) is used the simulation of Icarus Verilog crashes. Surprisingly, when I added the standard library stdio.h and I used it to print some string in my main(), that warning message did not show up anymore and the data is aligned!

How can I explain this behavior? What does the printing function (printf, iprintf, etc) do with aligning the data?

link|improve this question
What is the compiler? Does it work if you use the suggested alignment flags? – Andy May 31 '11 at 16:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.