mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-11-26 07:49:17 +00:00
17 lines
457 B
Batchfile
17 lines
457 B
Batchfile
|
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\\Base.2mg"
|
||
|
set FOLDER="/GTEDEV/Build"
|
||
|
|
||
|
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% src\\GTEShooter
|