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

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

What Is DOS?

What is DOS? Your disk operating system (DOS) performs a number of essential jobs. These includes: Controlling the way various application programs, such as word processors, electronic worksheets, database managers, accounting programs, etc., operate with your computer. DOS creates an environment that lets these programs "talks" to your computer and its input and output devices (printers, modems, display screen, keyboard, disk drivers, etc.). Keyboard and program-generated information is read, interpreted by DOS, and transferred to the selected computer device. Data being returned by your computer device. Data being returned by your computer is again translated by DOS into useful information and written to an output device, such as your display screen, printer, or disk. Providing "housekeeping" and file management utilities that perform useful tasks such as: Disk preparation (formatting, copying, etc.) File operation (creating, displaying, copying, combining, renami