30 lines
1.5 KiB
PHP
30 lines
1.5 KiB
PHP
; Command.com initialization messages.
|
||
;
|
||
; See resmsg.equ for macro definition.
|
||
|
||
msg BadVerMsg, <"Incorrect DOS version",CR,LF>
|
||
msg OutEnvMsg, <"Out of environment space",CR,LF>
|
||
msg CopyrightMsg,<"Microsoft(R) Windows DOS",CR,LF,"(C)Copyright Microsoft Corp 1990-2001.",CR,LF>
|
||
msg BadComLkMsg, <"Specified COMMAND search directory bad",CR,LF>
|
||
msg BadComAccMsg,<"Specified COMMAND search directory bad access denied",CR,LF>
|
||
|
||
msg Help1Msg <"Starts a new instance of the MS-DOS command interpreter.",CR,LF,CR,LF>
|
||
msg Help2Msg <"COMMAND [[drive:]path] [device] [/E:nnnnn] [/P] [/C string] [/MSG]",CR,LF,CR,LF>
|
||
msg Help3Msg <" [drive:]path Specifies the directory containing COMMAND.COM file.",CR,LF>
|
||
msg Help4Msg <" device Specifies the device to use for command input and output.",CR,LF>
|
||
msg Help5Msg <" /E:nnnnn Sets the initial environment size to nnnnn bytes.",CR,LF>
|
||
msg Help6Msg <" /P Makes the new command interpreter permanent (can't exit).",CR,LF>
|
||
msg Help7Msg <" /C string Carries out the command specified by string, and then stops.",CR,LF>
|
||
msg Help8Msg <" /MSG Specifies that all error messages be stored in memory. You",CR,LF>
|
||
msg Help9Msg <" need to specify /P with this switch.",CR,LF>
|
||
|
||
HelpMsgs dw RESGROUP:Help1Msg,RESGROUP:Help2Msg
|
||
dw RESGROUP:Help3Msg,RESGROUP:Help4Msg
|
||
dw RESGROUP:Help5Msg,RESGROUP:Help6Msg
|
||
dw RESGROUP:Help7Msg,RESGROUP:Help8Msg
|
||
dw RESGROUP:Help9Msg,0
|
||
|
||
public HelpMsgs
|
||
|
||
|