BIOS: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Dave_McKee (talk)
m Noted 'shadow ram' is true.
(No difference)

Revision as of 13:13, 27 October 2001

The Basic Input-Output System, or BIOS, is computer code that helps to locate and load an operating system. Its main purpose is to provide low level support to talk to the hardware of a system. Typically this includes driving the keyboard interface and providing simple output to a display.


Boot BIOS


In the modern PC era BIOS has come to refer to the code who's primary purpose is to issue the first commands to the system during power-up, or boot process, about where to find and how to load the operating system software. BIOS code also contains diagnostic capabilities, and on most systems it contains a small setup program interfacing the CMOS Memory. This memory holds user-customizable configuration data that is accessed by the BIOS code.


This sort of BIOS is usually refered to as firmware as its an integral part of the hardware it comes with. Originally BIOS's where held on ROM chips that could not be altered. As their complexity (and the need for updates) has grown they have been stored on devices such as EEPROM or Flash that can be upgraded in software.


A computer system may contain several BIOS chips. The system BIOS, which contains code to access fundamental hardware components such as the keyboard or the floppy drive resides on every IBM or Compatible Computers's main board. In addition, hardware components such as SCSI hard disk adapters or video boards may include their own BIOS, complementing or replacing the system BIOS code for the given component.



I'm not sure about this bit...


Although BIOS technology helped to create a standard hardware platform for commodity operating systems, it also hindered the PC architecture.


Read-Only Memory (ROM) chips are much slower to read than Random Access Memory (RAM). True. See later.


The storage capability of a ROM is also an issue, computer programs placed in ROM must be small and limited in features. In addition, BIOS code is a guarded trade secret, and the handful of vendors are often obfuscated their BIOS code to protect it from reverse-engineering. As technology advances, the features and functionalities built into the BIOS code begin to remove most of the limitations, or provide a workaround for them.


Most systems these days copy the BIOS code from the slow ROM into the faster RAM. Known as shadow RAM... done to speed up the BIOS routines.


The latest BIOS code support Plug and Play hardware components and Operating Systems, making system configuration much easier. Also, more and more manufacturer's license BIOS technology and optimize

it to work with their components or systems.