-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
32 lines (24 loc) · 877 Bytes
/
build.bat
File metadata and controls
32 lines (24 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
echo Building Manic Mower...
sjasmplus loader.sjasm
if %errorlevel% neq 0 goto :end
bin2tap -a 25000 loader.bin
sjasmplus turboloader.sjasm
if %errorlevel% neq 0 goto :end
bin2tap -a 45824 turboloader.bin
bin2hltap loading_screen.bin
sjasmplus musicassets.sjasm
if %errorlevel% neq 0 goto :end
bin2hltap musicassets.bin
sjasmplus musicassets2.sjasm
if %errorlevel% neq 0 goto :end
bin2hltap musicassets2.bin
sjasmplus manicmower.sjasm --lst=manicmower.lst --lstlab
if %errorlevel% neq 0 goto :end
bin2hltap manicmower.bin main.tap
echo Building TAP image...
copy /b mowerloader.tap + loader.tap + loading_screen.tap + main.tap + musicassets.tap + musicassets2.tap manicmower.tap
echo Building TZX image...
buildtzx manicmower.tzx mowerloader_turbo.tap turboloader.tap loading_screen.bin manicmower.bin musicassets.bin musicassets2.bin
:end
exit /b errorlevel