Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
Credits 181 Posts 26 Joined 2003-05-08 00:00 23-year member UID 1945 Gender Male
Status Offline
I don't really have any special experience, I just kept trying and read carefully.
In AUTOEXEC.BAT.
I found that
copy OPENINIT.RAW c:\
BLACKOUT.EXE
BANNER.COM
must be written after these programs before that startup screen will display, otherwise it will just be a black screen.
@echo off
break on
lfnfor on
verify on
set dircmd=/OGN /4
set comspec=a:\command.com
path=a:\;..
mode con rate=32 delay=1
killer.exe
doskey.com
mscdex.exe /D:CDROM1 /K
ctmouse.exe /r3
mousclip.exe /m
smartdrv.exe
peruse.com /X100
copy OPENINIT.RAW c:\
BLACKOUT.EXE
BANNER.COM
set ramdrive=
xmsdsk 20480 /y
findramd>nul
.....
.....
.....
I want to ask a question.
Why does path=a:\;..
have a semicolon?
What does this semicolon mean?