From cb07fdb2d9d65d32fb0c448188aa771215fbc827 Mon Sep 17 00:00:00 2001 From: FPGALover Date: Thu, 29 Feb 2024 22:26:49 +0000 Subject: [PATCH] Update sw/common/make_image.bat adding changes to install the vhd to the core folder on windows --- sw/common/make_image.bat | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sw/common/make_image.bat b/sw/common/make_image.bat index 0bdee4a..246ccfb 100644 --- a/sw/common/make_image.bat +++ b/sw/common/make_image.bat @@ -52,8 +52,14 @@ if exist %1\image_gen.exe ( ) REM cp %3\neorv32_bootloader_image.vhd %2 - echo "Memories Generated" + + echo "Installing application image to ..\..\..\rtl\core\neorv32_application_image.vhd" + cp %3\neorv32_application_image.vhd %2 + + echo "Installing application image to ..\..\..\rtl\core\neorv32_bootloader_image.vhd" + cp %3\neorv32_bootloader_image.vhd %2 + ) else ( echo "GCC is not configured, please install GCC and register on the PATH" )