2022-08-11 19:14:25 +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"
|
2022-08-14 12:45:58 +00:00
|
|
|
set IMAGE="..\\..\\emu\\Target.2mg"
|
2022-08-11 19:14:25 +00:00
|
|
|
set FOLDER="/GTEDEV/TF4"
|
|
|
|
|
|
|
|
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% .\GTETF4
|
2022-08-14 12:45:58 +00:00
|
|
|
%CADIUS% ADDFILE %IMAGE% %FOLDER% ..\..\src\Tool160
|