|
- BCD
- Acronym: Binary coded decimal
each 4 bit group is used to encode one decimal digit. This means that: - binary arithmetic needs special handling (typically a "decimal adjust" instruction is carried out after the ordinary binary operation to correct the answer)
- each 4 bits means one digit, so an 8-bit byte can only store integers in the range [00-99] rather than [0-255], a 16-bit word [0000-9999] rather than [0-65535]
- displaying BCD digits as ASCII requires trivial logic
- BIOS
- Acronym: Basic Input/Output System
The onboard system ROM chip which performs several tasks, including: - reset and initialization of hardware on reboot/power on (POST)
- simple software interface to hardware devices such as disk and video
- the loading of the OS bootstrap
|
|