mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Adding MSX Combo Disk as provided by @b3rendsh. Co-Authored-By: H.J.Berends <112617808+b3rendsh@users.noreply.github.com>
14 lines
257 B
Batchfile
14 lines
257 B
Batchfile
:: This script will build an aggregate MSX disk image
|
|
|
|
@echo off
|
|
setlocal
|
|
|
|
SETLOCAL EnableDelayedExpansion
|
|
|
|
set MTOOLS_SKIP_CHECK=1
|
|
set TOOLS=../../Tools
|
|
set PATH=%TOOLS%\mtools;%PATH%
|
|
|
|
PowerShell -ExecutionPolicy Unrestricted .\BuildMsxDsk.ps1 || exit /b
|
|
|