From 3c2a91317531ffeb96723760c0db7211b180bc2c Mon Sep 17 00:00:00 2001 From: FPGALover Date: Thu, 29 Feb 2024 22:28:18 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/common/make_image.bat b/sw/common/make_image.bat index 246ccfb..20a09b4 100644 --- a/sw/common/make_image.bat +++ b/sw/common/make_image.bat @@ -55,10 +55,10 @@ if exist %1\image_gen.exe ( echo "Memories Generated" echo "Installing application image to ..\..\..\rtl\core\neorv32_application_image.vhd" - cp %3\neorv32_application_image.vhd %2 + copy %3\neorv32_application_image.vhd %2 echo "Installing application image to ..\..\..\rtl\core\neorv32_bootloader_image.vhd" - cp %3\neorv32_bootloader_image.vhd %2 + copy %3\neorv32_bootloader_image.vhd %2 ) else ( echo "GCC is not configured, please install GCC and register on the PATH"