2022-07-13 13:57:05 +00:00
|
|
|
echo off
|
|
|
|
|
|
|
|
REM Copy all of the assets into the ProDOS image for emulator testing
|
|
|
|
REM
|
|
|
|
REM Pass the path of the Cadius tool as the first argument (%1)
|
|
|
|
|
|
|
|
set CADIUS="%1"
|
|
|
|
set IMAGE="..\\..\\..\\emu\\Target.2mg"
|
|
|
|
set FOLDER="/GTEDEV/KFestDemo01"
|
|
|
|
|
|
|
|
REM Cadius does not overwrite files, so clear the root folder first
|
|
|
|
%CADIUS% DELETEFOLDER %IMAGE% %FOLDER%
|
|
|
|
%CADIUS% CREATEFOLDER %IMAGE% %FOLDER%
|
|
|
|
|
|
|
|
REM Now copy files and folders as needed
|
|
|
|
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\GTEDemo1
|
2023-03-11 09:42:23 +00:00
|
|
|
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\gen\bg1.bin
|
2022-07-13 13:57:05 +00:00
|
|
|
%CADIUS% ADDFILE %IMAGE% %FOLDER% ..\..\..\src\Tool160
|