L4TIMER selects the game clock (L4TIME.CPP): FAST = HMI SOS interrupt clock at 28 Hz, unset = polled 18.2 Hz BIOS tick. Not a speed switch -- finer time quantum, smoother sim dt and timing cadences. Per the operator: the flag tracked the deployed fleet's hardware -- original Tesla pods ran Pentium Pro 90s (SLOW), later fleets Pentium Pro 200s (FAST). The emulated pod has no ISR-headroom constraint, so FAST is our default from here on. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# Networked pod boot, GO.BAT-style loop (persistent: auto-relaunches netnub
|
|
# after each mission/idle disconnect so the pod stays connected to the console
|
|
# and picks up missions as the operator queues them -- mirrors the real pod's
|
|
# GO.BAT). Same 0x340 NIC fix as net_full.conf (see that file's header).
|
|
# Sound is OFF here (setenv arg3=n) for fast reconnect cycles; flip to net_full
|
|
# for the full sound experience.
|
|
[sdl]
|
|
output=opengl
|
|
priority=highest,highest
|
|
[dosbox]
|
|
memsize=32
|
|
machine=svga_s3
|
|
[cpu]
|
|
core=dynamic
|
|
cputype=pentium
|
|
cycles=max
|
|
[ne2000]
|
|
ne2000=true
|
|
nicbase=340
|
|
nicirq=3
|
|
backend=pcap
|
|
[ethernet, pcap]
|
|
realnic=DB5521D
|
|
[serial]
|
|
serial1=directserial realport:COM1 rxpollus:100 rxburst:16
|
|
serial2=disabled
|
|
[autoexec]
|
|
mount c "C:\VWE\TeslaRel410\ALPHA_1"
|
|
mount d "C:\VWE\TeslaRel410\emulator\net-boot"
|
|
d:
|
|
echo === loading NE2000 packet-driver stack (pcap/bridge, port 340) ===
|
|
d:\lsl
|
|
d:\ne2000
|
|
d:\odipkt
|
|
c:
|
|
cd \rel410\bt
|
|
set VIDEOFORMAT=svga
|
|
set TEMP=c:\
|
|
set HEAPSIZE=15000000
|
|
set L4GAUGE=640x480x16
|
|
call setenv.bat r f n g
|
|
echo === entering GO.BAT-style netnub loop (waits for console missions) ===
|
|
call d:\loop.bat
|