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>
56 lines
830 B
Batchfile
56 lines
830 B
Batchfile
@echo off
|
|
rem
|
|
rem Growing, multi parameter check batch file
|
|
rem Author JWM 26.01.95
|
|
rem
|
|
:init
|
|
set mem=
|
|
set cont=
|
|
|
|
:parse
|
|
REM VWE special - default to check local memory
|
|
set mem=1
|
|
if %1.==. goto begin
|
|
if %1==? goto help
|
|
if %1==h goto help
|
|
if %1==H goto help
|
|
if %1==150 set transputer=%1
|
|
if %1==200 set transputer=%1
|
|
if %1==300 set transputer=%1
|
|
if %1==m set mem=1
|
|
if %1==M set mem=1
|
|
if %1==c set cont=1
|
|
if %1==C set cont=1
|
|
|
|
shift
|
|
goto parse
|
|
|
|
:begin
|
|
if %mem%.==. goto c
|
|
if %mem%.==1. goto cm
|
|
:cm
|
|
check /r | mtest /l
|
|
goto loop_c
|
|
:c
|
|
check /r
|
|
goto loop_c
|
|
:loop_c
|
|
if %cont%.==1. goto begin
|
|
|
|
goto tidy
|
|
|
|
:help
|
|
echo.
|
|
echo Useage = %0 parameter(s)
|
|
echo parameters :-
|
|
echo (m) Test memory
|
|
echo (c) Continuos testing
|
|
echo (? or h) this help menu
|
|
echo.
|
|
|
|
:tidy
|
|
set mem=
|
|
set cont=
|
|
|
|
:end
|