2021-09-19 19:16:41 -04:00
|
|
|
/*
|
|
|
|
* Declare DOS commands
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DOS_CMDS_H
|
|
|
|
#define __DOS_CMDS_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fetch and display the MBR for the specified device:
|
|
|
|
*
|
|
|
|
* Inputs:
|
|
|
|
* drive = "@S" for SDC, "@H" for hard drive
|
|
|
|
*/
|
|
|
|
extern short cmd_dump_mbr(char * drive);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List the directory at the given path
|
|
|
|
*/
|
|
|
|
extern short cmd_dir(char * path);
|
|
|
|
|
2021-09-24 12:05:45 -04:00
|
|
|
extern short cmd_type(short screen, char * path);
|
|
|
|
|
2021-09-19 19:16:41 -04:00
|
|
|
#endif
|