mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 14:17:51 -04:00
[image_gen] add "_c" suffix to VHDL constants
This commit is contained in:
parent
8313306138
commit
f5bfbd9949
1 changed files with 4 additions and 4 deletions
|
@ -212,8 +212,8 @@ int main(int argc, char *argv[]) {
|
||||||
"\n"
|
"\n"
|
||||||
"package neorv32_application_image is\n"
|
"package neorv32_application_image is\n"
|
||||||
"\n"
|
"\n"
|
||||||
"constant application_init_size : natural := %lu; -- bytes\n"
|
"constant application_init_size_c : natural := %lu; -- bytes\n"
|
||||||
"constant application_init_image : mem32_t := (\n",
|
"constant application_init_image_c : mem32_t := (\n",
|
||||||
argv[4], argv[2], compile_time, raw_exe_size);
|
argv[4], argv[2], compile_time, raw_exe_size);
|
||||||
fputs(tmp_string, output);
|
fputs(tmp_string, output);
|
||||||
|
|
||||||
|
@ -276,8 +276,8 @@ int main(int argc, char *argv[]) {
|
||||||
"\n"
|
"\n"
|
||||||
"package neorv32_bootloader_image is\n"
|
"package neorv32_bootloader_image is\n"
|
||||||
"\n"
|
"\n"
|
||||||
"constant bootloader_init_size : natural := %lu; -- bytes\n"
|
"constant bootloader_init_size_c : natural := %lu; -- bytes\n"
|
||||||
"constant bootloader_init_image : mem32_t := (\n",
|
"constant bootloader_init_image_c : mem32_t := (\n",
|
||||||
argv[4], argv[2], compile_time, raw_exe_size);
|
argv[4], argv[2], compile_time, raw_exe_size);
|
||||||
fputs(tmp_string, output);
|
fputs(tmp_string, output);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue