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?