mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
668 B
22 lines
668 B
@echo off
|
|
setlocal
|
|
|
|
SETLOCAL EnableDelayedExpansion
|
|
|
|
copy hd1k_prefix.dat ..\..\Binary\ || exit /b
|
|
|
|
for %%f in (fd_*.txt) do (
|
|
set Image=%%~nf
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildImg.ps1 fd144_!Image:fd_=! || exit /b
|
|
)
|
|
|
|
for %%f in (hd_*.txt) do (
|
|
set Image=%%~nf
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildImg.ps1 hd512_!Image:hd_=! || exit /b
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildImg.ps1 hd1k_!Image:hd_=! || exit /b
|
|
)
|
|
|
|
for %%f in (*.def) do (
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildDsk.ps1 hd512_%%~nf || exit /b
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildDsk.ps1 hd1k_%%~nf || exit /b
|
|
)
|
|
|