The memory the BIOS uses is not normally FLASH memory but battery-backed SRAM.
Flash memory = memory that is constructed so that it can be read as normal and written in a special way so that data is not lost if the power is removed. The downsides are that it is more expensive to use, is harder to build in the same chips as other devices, and when writing you must erase a whole block and then rewrite what you want to the whole block. Block sizes vary from 256 bytes in small chips to 64KB in larger ones.
SRAM = memory that is fast, easy to use, and easy to integrate onto chips but loses its contents if the power is removed.
Battery-backed SRAM is a normal SRAM which has a battery connected along with another power source such that if the other source fails the battery will take over.
Normally, the battery is a small "button" cell, CR2032 or CR2024, but the type does vary. You can remove them quite easily. They should last in normal conditions for between 4 and 6 years before having to be replaced.
Removing the button cell will be effective within a few minutes; you might like to leave it 5 or 6 mins to be sure, although it might only need, say, 2. The reason the effect is not instant is twofold: (a) the battery consumes a very tiny current - usually a few microamps (millionths of an amp) and (b) there are capacitors on the power supply to "smooth" the current spikes caused when transistors switch on or off. These take some time to discharge into the RAM and for the RAM itself to loose its current.
So in summary:
- You don't (normally) "Flash" a BIOS RAM
- Between 5 and 10 mins is a good time to let it erase, although it might not need that long.
- There are some motherboards that store some information elsewhere, e.g. passwords in true FLASH ram, or in a separate device, which won't be erased by removing the BIOS battery.
In general, it's best to check the manual for the BIOS before playing with these areas. There are too many "gotchas" for it to be simple.
Ruth