Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Методичка Английский.doc
Скачиваний:
6
Добавлен:
10.11.2019
Размер:
962.05 Кб
Скачать

5. Memory Word list

  1. register ['redzistoj техн. лічильник

  2. to require [ri'kwaia] вимагати

  3. particular [ps'tikjuls] особливий, специфічний

  4. to obey [o'bei] слухатися, коритися

  5. bulk |'b'4k| об'єм; основна маса

  6. to refer [rife:] посилатися, стосуватися

  7. random fnendsm] випадковий

  8. semiconductor | semiksndAkta] напівпровідник

  9. volatile [VobtailJ непостійний, енергозалєжний

  1. latter [Isbta] нсдавній;останній

  2. pattern ['p&ten] зразок, модель

  3. charge |tja:dz] навантаження; ел. заряд

  4. exposure [iks'porno] зовнішній вплив, схильний до

зовнішнього впливу

14. erasable fi'reizebl] той що стирається

Pay attention to these abbreviations:

ROM(Read-Only Memory) постійна пам' ять

RAM(Random-Access Memory) оперативна пам'ять; запам'ято-

вуючий пристрій з довільним доступом

BIOS(Basic Input Output System) базова система введення/виведення

Memory

The memory (main store) of a computer is made up of a large number of registers which are used to hold the instructions (the program) required to solve a particular problem and some data.

Programs other than the one that is being obeyed may be stored on a backing-store external to the computer memory. In a similar way, the bulk of the data required for a computer run may also be stored on backing-storage. However, data to be operated on by the processing elements of the computer must be in the computer memory during the processing cycle.

There are two basic types of memory, namely read/write memory, whose contents may be changed, by writing new information into it and read only memory (ROM) whose contents are fixed. Read/write memory is usually referred to as random access memory (RAM) for historical reasons, although strictly speaking most modern read only memories can also be accessed in a random order.

The semiconductor RAM memory is of the volatile type. That is. when power is removed, all information previously written in memory is lost. ROM retains the information in it even without power.

ROMs, which are non-volatile, must have the information loaded into the somehow before they can be used. This can either be done during the

manufacturing process; they are then referred to as mask-programmed ROMs, or by the user. In the latter case they are referred to as programmable ROMs (PROMs). Programming is done either by burning the required information pattern into them with high voltage pulses (the fusible Imk type PROM) or by storing minute charges on them. The latter are erasable through exposure to ultraviolet light and referred to as EPROMs (erasable PROMs).

The ROM-BIOS is the part of ROM that is in active use, all the time the computer is at work. The role of the ROM-BIOS is to provide the fundamental services that are needed for the operation of the computer. For the most part, the BIOS, controls the computer's peripheral devices, such as the display screen, keyboard, and disk drives. When we use the term BIOS in its narrowest sense, we are referring to the device control programs - the programs that translate a simple command, such as read-something-from-thc-disk, into all the steps needed to actually perform the command, including error detection and correction. Conceptually, the BIOS programs lie between our programs (including DOS) and the hardware. In effect, this means that the BIOS, works in two directions in a two-sided process. One side receives requests from programs to perform the standard BIOS input/output services. The other side of the BIOS communicates with the computer's hardware devices, using whatever detailed command codes each device driver requires.

The IBM PC family, like all computers based on tire Intel 8086 family of microprocessors is controlled largely through the use of interrupts, which can be generated by hardware or software. The BIOS sendee routines are not exception; each one is assigned an interrupt number that we must call when to use the service. When an interrupt occurs, control of the computer is turned over to an interrupt-handling subroutine that is often stored in the system ROM (a BIOS service routine is nothing more than an interrupt handler).