Added REM which does euhm nothing
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@255
This commit is contained in:
parent
2338468b5b
commit
4072e14107
2 changed files with 5 additions and 2 deletions
|
@ -37,6 +37,8 @@ static SHELL_Cmd cmd_list[]={
|
|||
"IF", 0, &DOS_Shell::CMD_IF, "Performs conditional processing in batch programs.",
|
||||
"GOTO", 0, &DOS_Shell::CMD_GOTO, "Jump to a labeled line in a batch script.",
|
||||
"TYPE", 0, &DOS_Shell::CMD_TYPE, "Display the contents of a text-file.",
|
||||
"REM", 0, &DOS_Shell::CMD_REM, "Add comments in a batch file.",
|
||||
|
||||
/*
|
||||
"CHDIR", 0, &DOS_Shell::CMD_CHDIR, "Change Directory",
|
||||
"MKDIR", 0, &DOS_Shell::CMD_MKDIR, "Make Directory",
|
||||
|
@ -377,5 +379,5 @@ nextfile:
|
|||
if (*args) goto nextfile;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void DOS_Shell::CMD_REM(char * args) {
|
||||
}
|
|
@ -77,6 +77,7 @@ public:
|
|||
void CMD_IF(char * args);
|
||||
void CMD_GOTO(char * args);
|
||||
void CMD_TYPE(char * args);
|
||||
void CMD_REM(char * args);
|
||||
void SyntaxError(void);
|
||||
|
||||
/* The shell's variables */
|
||||
|
|
Loading…
Add table
Reference in a new issue