从里开始=》
:start
cls
print
print ------------------------------------------------------------------------------
print Bootable CD main menu zhanghuiwen Make in 2002
print ------------------------------------------------------------------------------
print F1=Help
print
print
print 1) MSDOS 6.22
print 2) WINDOWS 95
print 3) WINDOWS 98 SE
print q) Quit to command prompt
print r) Reboot
print Esc) Boot first harddisk
print
print Hit the key of choice:
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey 1 goto dos
onkey 2 goto win95
onkey 3 goto win98
onkey q quit
onkey r reboot
onkey f1 goto help
onkey esc boot 80
; When no key found...
goto mainkey
;
:help
cls
print HELP
print ----
print
print Here you can type help for your customers
print
print Press any key to return to main menu
getkey
goto start
:dos
print Starting Dos622
run dos622.img
getkey
goto start
;
:win95
print Start Windows 95 command mode
run win95.img
getkey
goto start
;
:win98
print Start windows 98 se command mode
run win98.img
getkey
goto start
; EOF