Un-ignored: this is the working copy the emulator actually boots (patched BTL4OPT.EXE v4 lineage + .orig/.nop14/.pre_idle/.pre_limit backups, TESTARN.EGG arena1 test egg, REL410 BT+RP trees, VGL_LABS pod boot bats, VWETEST factory test suites, SB16 Creative utilities). The pristine untouched image remains ALPHA_1.zip. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
21 lines
355 B
Batchfile
21 lines
355 B
Batchfile
@echo off
|
|
if %iboardsize%.==. set iboardsize=#100000
|
|
if %1. == . goto default
|
|
if %1 == 1 goto bank1
|
|
if %1 == 2 goto bank2
|
|
if %1 == 3 goto bank3
|
|
goto end
|
|
:default
|
|
call run wiggle 0x82800000
|
|
goto end
|
|
:bank1
|
|
call run wiggle 0x82800000
|
|
goto end
|
|
:bank2
|
|
call run wiggle 0x83000000
|
|
goto end
|
|
:bank3
|
|
call run wiggle 0x83800000
|
|
goto end
|
|
:end
|