1.
The content of config.sys:
--------------------------------------------------------------------
[menu]
menuitem=Win98
menuitem=Etherboot
menudefault=Etherboot,7
menucolor=7,0

[Win98]

[Etherboot]

--------------------------------------------------------------------

2.
The content of autoexec.bat:
--------------------------------------------------------------------
@ECHO OFF
IF "%config%"=="Win98" GOTO Win98
IF "%config%"=="Etherboot" GOTO Etherboot

:Win98
GOTO QUIT

:Etherboot
eb-net.com
GOTO QUIT

:QUIT
echo Let's rock!
--------------------------------------------------------------------
