28

For the longest time I assumed I was entering the BIOS setup and CMOS is a chip that holds the settings I set in BIOS in its memory.

I recently read somewhere that when I am configuring the boot order and etc, that that's actually CMOS setup.

I'm a little confused now, could someone explain this to me?

RJFalconer
  • 10,195
  • 4
  • 43
  • 51
Space Ghost
  • 1,103
  • 4
  • 15
  • 16

2 Answers2

60

Both. CMOS stores BIOS configuration information. When you "enter setup", you are running the BIOS's configuration program, which loads the settings defined in CMOS. You are "setting up" the CMOS, by providing configuration information the BIOS will use as it runs.

The BIOS is a program written as Firmware onto a ROM, so it cannot be written to (except by an all-or-nothing flash operation, which is dangerous, so not an everyday operation). The BIOS ROM stores its configuration info on to the CMOS when you hit F10. That's why clearing the CMOS restores your BIOS settings to default, and is why it doesn't delete the BIOS iteslf, leaving you with an expensive paperweight.

In example, the BIOS has a subroutine that will load the OS per the boot order. the boot order information however, (eg use first CD-ROM as first device) is stored in the CMOS. If you clear the CMOS, the BIOS will use a default, usually the first disk on the first disk controller that is populated.

Kevin
  • 702
  • 4
  • 9
  • 20
Frank Thomas
  • 35,097
  • 3
  • 77
  • 98
3

BIOS stands for Basic Input Output System and CMOS stands for Complementary Metal Oxide Semiconductor. The BIOS system is written onto the CMOS microchip. You can't have a BIOS without a CMOS to hold it, so it's not uncommon for the two terms to be used interchangeably.

Richie Frame
  • 1,890
  • 11
  • 12
  • 1
    'Complementary' ;) – Space Ghost May 05 '15 at 06:28
  • Aww, that's right! Thanks for catching me on that. – William Russell May 05 '15 at 06:31
  • 3
    Actually BIOS is written in *ROM, not in CMOS. BIOS write in CMOS to store some parameters. Sorry, you loose my upvote :( – Romeo Ninov May 05 '15 at 06:34
  • @RomeoNinov CMOS is the semiconductor technology used to build EEPROM chips – Richie Frame May 05 '15 at 10:22
  • 1
    In this case by CMOS is used in sense of realtime clock where are stored BIOS settings. ANd it is not the same place as where BIOS code reside – Romeo Ninov May 05 '15 at 10:23
  • @RomeoNinov CMOS technology is used in the RTC, the BIOS memory chip, and even the CPU and RAM. Technically the transistors floating gate holds the BIOS program data, but it is still CMOS based technology – Richie Frame May 05 '15 at 10:25
  • 2
    @RichieFrame: Technically you are right but many years ago the [CMOS RAM backed up by a battery](https://en.wikipedia.org/wiki/Nonvolatile_BIOS_memory) began to be called simply "CMOS". So nowadays, stupidly, the additional meaning of the term CMOS is the integrated circuit containing the non-volatile RAM with BIOS settings (and the RTC circuits). Certainly a better term is NVRAM (non-volatile RAM). --- Anyway, as Romeo Ninov wrote, the BIOS is not stored in this CMOS. Only the settings of BIOS are there. – pabouk - Ukraine stay strong May 05 '15 at 11:38