Skip to main content

DOS Programs

DOS PROGRAMS

Knowing a few things about DOS may help further your understanding of how DOS works, making you a more skilled DOS user. This section includes information about:
  • System control programs 
  • Internal and external commands
  • DOS program summary
  • Device designation (or names)
 
System Control Programs:  There are four essential programs associated with the control of your computer and the way it interacts with 1) programs; 2)your keyboard and display screen; and
3) attached devices like disk drives, printers, and modems. These are:

  • Boot Record
  • BIO.COM
  • DOS.COM
  • COMMAND.COM

Only the COMMAND.COM program is displayed when you view a directory of filenames located on a disk. You can see the BIO.COM and DOS.COM programs by typing CHKDSK /V and pressing Enter (sometimes engraved Return) which checks the files and storage space on your disk. The /V option lets you view filenames. The purpose of the system control program is briefly described for you in the following paragraph:

The Boot Record: The term boot or bootstrap, when used with computers, means start or start-up. When you boot your computer, you are turning it on and loading the operating system into your computer's memory. This includes reading the boot record into memory, which passes control to DOS. Next, DOS checks for the presence of  BIO.COM and DOS.COM. If these files are found, the DOS prompt is displayed on your screen. This prompt, normally and A>, B>, or C>, depending on which disk drive is active, invites you to type a command. If BIO.COM and DOS.COM are not found, an error message is displayed.

Your computer does not display not boot without a boot record. Instead, an error message is displayed telling you to insert a system disk. The boot record is located on track 0, sector 1, side 0 of your formatted DOS disk. If you have a hard disk, the boot record is located on the first sector of the first cylinder of the DOS partition.

The BIO.COM Program: This program, called IBMBIO.COM on IBM's DOS version, interacts between your computer's ROM BIOS (read-only memory basic input/output system) and calls from the DOS.COM program described next. At start-up, BIO.COM resets the disk system and initializes attached devices. BIO.COM always contains at least five device drivers, which are used to control the operation of your keyboard, screen, printer, disk controller, and system clock. Other device drivers that often are included control large, external hard disks, serial communications. joy sticks, and mouse devices.

The final task performed by BIO.COM is to load the command processor program, COMMAND.COM. The BIO.COM file is programmed by the manufacturer of your computer system. Therefore, the specific type and number of device drivers vary between computers.

The DOS.COM Programs: This program, called IBMDOS.COM on IBM's DOS version, interacts directly with applications programs and the BIO.COM program described above. You can think of this program as the bridge between applications programs and BIO.COM, as it intercepts program calls for printing, data storage or retrieval, information display, and so on, and routes these calls to the BIO.COM program, which responds to the request with the appropiate reaction.

The COMMAND.COM: The COMMAND.COM program is called the command processor. It intercepts, or reads, commands from the keyboard and executable command files. These files have the filename AUTOEXEC.BAT or the file extensions.COM and .EXE. COMMAND.COM also produces the DOS disk prompt (A>), performs error checking, and displays error message when system errors are detected.

Comments

Popular posts from this blog

DIR

DIR The DIR command is used to display filenames on your screen. In addition to names, the file size and creation date and time is also displayed. Several forms of the DIR command are available for you to use. A comprehensive list of DIR command forms follows. DIR-Lists a directory of the disk located in the active (or logged) disk drive (disk A if the A> prompt is displayed, B if the B> prompt is displayed, and so on). DIR D:-Lists a directory of the specified disk D:. DIR/P or DIR D:/P- Pauses the directory listing when the screen is full. press any key to see the next screen load of filenames. Typing DIR |MORE achieves a similar result. DIR/W or DIR D:/W- Display a wide directory; omits file size , date, and time information. DIR filename.ext - Displays the specified filename; used to verify the presence of a file on the logged or specified disk. DIR filename.* or DIR filename.???-Displays a directory of all files having the same filename with different extensions....

Filenames

It is important to understand DOS file naming conventions and their use. Here, filenames and some special filename "tools" called wild cards and literals are described. What is a File name?   Every program and data file is given a name to differentiate it from other programs and data files. A program is one or more computer instructions collected into a file. A data file is normally a collection of characters (or data) that make up a document, like a letter, or a database, like a collection of accounting transactions or customer records. Descriptive filenames are normally used. For example, if you create and save a letter to Mom, you might give it the filename MOM.LTR. A letter to Dad could be called DAD.LTR. A word processing program file might have the filename WP.COM. Examine these filenames a little closer. First, notice that each filename is meaningful. This is important if you want to know what is in a file by looking at its name. Obscure filenames are of little u...

FORMAT

The FORMAT  command prepares a new disk for use by organizing the disk into magnetic tracks and sectors that are readable by DOS. when a disk is formatted, any files on that disk are usually lost. because of the plethora of disk types and capacities, new parameters were added to the FORMAT command in DOS  version 4.01. MS-DOS 5.00 introduction a safe FORMAT command and the ability to UNFORMAT unintentially formatted disks. These parameters and others are presented in the following paragraph and table. FORMAT Command Form:   There are a number of FORMAT command forms. These are described in the following list. CAUTION  BE aware that the FORMAT command erases all files from the disk being formatted.     Many computer users  have accidentally formatted the wrong disk. If you have programs or    document files  you wish to keep, do not format the disk! (DOS 5.00 lets you UNFORMAT     disk, but even with this ve...