slovodefinícia
processor
(mass)
processor
- procesor
processor
(encz)
processor,procesor n: [it.] web
processor
(wn)
processor
n 1: a business engaged in processing agricultural products and
preparing them for market
2: someone who processes things (foods or photographs or
applicants etc.)
3: (computer science) the part of a computer (a microprocessor
chip) that does most of the data processing; "the CPU and the
memory form the central part of a computer to which the
peripherals are attached" [syn: central processing unit,
CPU, C.P.U., central processor, processor,
mainframe]
processor
(foldoc)
central processing unit
CPU
processor

(CPU, processor) The part of a
computer which controls all the other parts. Designs vary
widely but the CPU generally consists of the control unit,
the arithmetic and logic unit (ALU), registers, temporary
buffers and various other logic.

The control unit fetches instructions from memory and
decodes them to produce signals which control the other parts
of the computer. These signals cause it to transfer data
between memory and ALU or to activate peripherals to perform
input or output.

Various types of memory, including cache, RAM and ROM,
are often considered to be part of the CPU, particularly in
modern microprocessors where a single integrated circuit
may contain one or more processors as well as any or all of
the above types of memory. The CPU, and any of these
components that are in separate chips, are usually all located
on the same printed circuit board, known as the
motherboard. This in turn is located in the system unit
(sometimes incorrectly referred to as the "CPU").

A parallel computer has several CPUs which may share other
resources such as memory and peripherals.

The term "processor" has to some extent replaced "CPU", though
RAM and ROM are not logically part of the processor.

{List of processors
(http://lldn.timesys.com/complete_list_of_processors)}.

(2007-04-02)
podobné slovodefinícia
central processor
(encz)
central processor, n:
coprocessor
(encz)
coprocessor,koprocesor n: Zdeněk Brož
data processor
(encz)
data processor,procesor n: Zdeněk Brož
food processor
(encz)
food processor,mixér Anlez
microprocessor
(encz)
microprocessor,mikroprocesor n: Zdeněk Brož
microprocessors
(encz)
microprocessors,mikroprocesory n: pl. Zdeněk Brož
multiprocessor
(encz)
multiprocessor,multiprocesor n: Zdeněk Brož
multiprocessors
(encz)
multiprocessors,multiprocesory n: pl. Zdeněk Brož
natural language processor
(encz)
natural language processor, n:
postprocessor
(encz)
postprocessor,postprocesor n: Zdeněk Brož
pre-processor
(encz)
pre-processor,preprocesor n: Zdeněk Brož
preprocessor
(encz)
preprocessor,preprocesor n: Zdeněk Brož
processors
(encz)
processors,procesory n: pl. Zdeněk Brož
text processor
(encz)
text processor,textový editor n: [it.] Pavel Gloss
uniprocessor
(encz)
uniprocessor,jednoprocesorový adj: Zdeněk Brož
word processor
(encz)
word processor,textový editor n: [it.] PetrVword processor,textový procesor n: [it.] PetrV
high speed digital processor architecture
(czen)
High Speed Digital Processor Architecture,HIPRA[zkr.] [voj.] Zdeněk
Brož a automatický překlad
real-time symmetric multiprocessor
(czen)
Real-Time Symmetric Multiprocessor,RTSMP[zkr.] [voj.] Zdeněk Brož a
automatický překlad
time-space-position-information data processor
(czen)
Time-Space-Position-Information Data Processor,TDP[zkr.] [voj.] Zdeněk
Brož a automatický překlad
central processor
(wn)
central processor
n 1: (computer science) the part of a computer (a microprocessor
chip) that does most of the data processing; "the CPU and
the memory form the central part of a computer to which the
peripherals are attached" [syn: central processing unit,
CPU, C.P.U., central processor, processor,
mainframe]
data processor
(wn)
data processor
n 1: a machine for performing calculations automatically [syn:
computer, computing machine, computing device, {data
processor}, electronic computer, {information processing
system}]
food processor
(wn)
food processor
n 1: a kitchen appliance with interchangeable blades; used for
shredding or blending or chopping or slicing food
microprocessor
(wn)
microprocessor
n 1: integrated circuit semiconductor chip that performs the
bulk of the processing and controls the parts of a system;
"a microprocessor functions as the central processing unit
of a microcomputer"; "a disk drive contains a
microprocessor to handle the internal functions of the
drive"
microprocessor chip
(wn)
microprocessor chip
n 1: electronic equipment consisting of a small crystal of a
silicon semiconductor fabricated to carry out a number of
electronic functions in an integrated circuit [syn: chip,
microchip, micro chip, silicon chip, {microprocessor
chip}]
multiprocessor
(wn)
multiprocessor
n 1: a computer that uses two or more processing units under
integrated control
natural language processor
(wn)
natural language processor
n 1: an application program that deals with natural language
text [syn: natural language processor, {natural language
processing application}]
word processor
(wn)
word processor
n 1: an application that provides the user with tools needed to
write and edit and format text and to send it to a printer
[syn: word processor, word processing system]
algorithmic processor description language
(foldoc)
Algorithmic Processor Description Language
APDL

(APDL) An ALGOL 60-like language for describing
computer design, for the CDC G-21.

["The Description, Simulation, and Automatic Implementation of
Digital Computer Processors", J.A. Darringer, Ph.D Thesis EE
Dept, CMU May 1969].

(1995-11-26)
array processor
(foldoc)
array processor
vector processor

(Or "vector processor") A computer, or extension
to its arithmetic unit, that is capable of performing
simultaneous computations on elements of an array or table
of data in some number of dimensions.

The IBM AltiVec (the "Velocity Engine" used in the {Apple
G4} computers) is a vector processor.

Common uses for array processors include analysis of fluid
dynamics and rotation of 3d objects, as well as data
retrieval, in which elements of a database are scanned
simultaneously. Array processors are very rare now (1998).

{Array presentation
(http://cs.njit.edu/leon/105/c5/index.htm)}.

(2003-09-11)
array processor assembly language
(foldoc)
Array Processor Assembly Language
APAL

(APAL) The assembly language for the DAP
parallel computer.

(1994-11-28)
c preprocessor
(foldoc)
C preprocessor

(cpp) The standard Unix
macro-expansion utility run as the first phase of the C
compiler, cc. Cpp interprets lines beginning with "#" such
as

#define BUFFER_SIZE 256

as a textual assignment giving the symbol BUFFER_SIZE a
value "256". Symbols defined with cpp are traditionally given
upper case names to distinguish them from C identifiers. This
symbol can be used later in the input, as in

char input_buffer[BUFFER_SIZE];

This use of cpp to name constants, rather than writing these
magic numbers inline, makes a program easier to read and
maintain, especially if there is more than one occurrence of
BUFFER_SIZE all of which must all have the same value.

Cpp macros can have parameters:

#define BIT(n) (1
command control processor
(foldoc)
Command Control Processor

(CCP) CP/M's command-line interpreter.

(2001-11-01)
coprocessor
(foldoc)
coprocessor

(Or "accelerator") Hardware, often an {integrated
circuit},
which assists the main processor (the "CPU") by performing specific
functions
faster than the main processor could.

The most common example is a floating point coprocessor
(or "FPU"), others are graphics (GPU) and networking.

The coprocessor may decode instructions in parallel with the main
processor and execute only those instructions intended for it.

(1995-01-05)
cornell list processor
(foldoc)
Cornell List Processor

(CLP) A list processing language, an extension of CORC, used
for simulation.

[Sammet 1969, p. 461].

(1994-11-01)
front-end processor
(foldoc)
front-end processor

(FEP) 1. A small computer necessary to enable an IBM
mainframe using SNA to communicate beyond the limits of
the dinosaur pen.

2. A small computer controlling the screen and keyboard of a
Symbolics 3600 LISP Machine.
instruction set processor
(foldoc)
Instruction Set Processor

(ISP) A family of languages for describing the
instruction sets of computers.

["Computer Structures: Readings and Examples", D.P. Siewiorek
et al, McGraw-Hill 1982].

(1995-10-12)
intel comparative microprocessor performance index
(foldoc)
Intel Comparative Microprocessor Performance index
iCOMP

(iCOMP) A unit used by Intel to indicate
the relative performance of their 80x86 microprocessors.

(http://134.134.214.1/procs/perf/icomp/).

(1997-06-07)
interface message processor
(foldoc)
Interface Message Processor

(IMP) The original message switching node on
the ARPANET.

[More details?]

(1996-04-07)
interpretive menu processor
(foldoc)
Interpretive Menu Processor

(IMP) The language used to implement much of the
user interface of the Alis office automation package
from Applix, Inc.

(1996-04-07)
macro preprocessor
(foldoc)
preprocessor
macro preprocessor

A program that transforms input data in some way
before it is read by the main program. In the case of a
compiler, the input is source code. The main advantage of
using a preprocessor is that it is possible to change the
specification of the input data without changing the main
program. The separation can also help to make the system's
overall behaviour easier to understand. The disadvantage is
that performance may be reduced by the extra input and output
performed between the two programs.

For example, the C preprocessor, cpp, handles textual
macro substitution (it acts as a "macro preprocessor"),
conditional compilation and inclusion of other files.

A preprocessor may be used to transform a program into a
simpler language, e.g. to transform C++ into C.

(2007-04-05)
microprocessor
(foldoc)
microprocessor
micro

(Or "micro") A computer whose entire CPU is
contained on one (or a small number of) integrated circuits.

The important characteristics of a microprocessor are the
widths of its internal and external address bus and {data
bus} (and instruction), its clock rate and its {instruction
set}. Processors are also often classified as either RISC
or CISC.

The first commercial microprocessor was the Intel 4004 which
appeared in 1971. This was the CPU member of a set of four
LSI integrated circuits called the MCS-4, which was
originally designed for use in a calculator but was marketed
as "programmable controller for logic replacement". The 4004
is referred to as a 4-bit microprocessor since it processed
only 4 bits of data at a time. This very short word size is
due mainly to the limitations imposed by the maximum
integrated circuit density then achievable.

As integrated circuit densities increased with the rapid
development of integrated circuit manufacturing technology,
the power and performance of the microprocessors also
increased. This is reflected in the increase in the CPU word
size to 4, 8, 16, and by mid-1980s, 32 bits. The smaller
microprocessors have relatively simple instruction sets,
e.g., no floating point instructions, but they are
nevertheless suitable as controllers for a very wide range of
applications such as car engines and microwave ovens.

The Intel 4004 was followed with, among others the 4040,
8008, 8080, 8086, 80186, 80286, 80386, 486 and
Pentium. Other families include the Motorola 6800 and
680x0 families, National Semiconductor 16000 and {National
Semiconductor 32000}, SPARC, ARM, MIPS, Zilog Z8000,
PowerPC and the Inmos Transputer family.

The larger, more recent microprocessors families have
gradually acquired most of the features of large computers.
As the microprocessor industry has matured, several families
of microprocessors have evolved into de facto industrial
standards with multiple manufacturers and numerous "support"
chips including RAM, ROM, I/O controllers etc.

A single chip microprocessor may include other components such
as memory (RAM, ROM, PROM), memory management,
caches, floating-point unit, input/output ports and
timers. Such devices are also known as microcontrollers.

The one-chip microcomputer is in many respects, a landmark
development in computer technology because it reduces the
computer to a small, inexpensive, and easily replaceable
design component.

Microcomputers have given rise to a new class of
general-purpose machines called personal computers. These
are small low cost computers that are designed to sit on an
ordinary office desk or to be portable and fuelled the
computer boom of the late 1980s. The most widespread example
is the also IBM PC, based on microprocessors from {Intel
Corporation}. Apple Computers, Inc. have also produced a
range of personal computers, as have several other companies.

See also killer micro, minicomputer, CPU Info Center.

(2002-07-16)
microprocessor without interlocked pipeline stages
(foldoc)
Microprocessor without Interlocked Pipeline Stages
MIPS project

(MIPS) A project at Stanford University intended
to simplify processor design by eliminating hardware
interlocks between the five pipeline stages. This means
that only single execution cycle instructions can access the
thirty two 32-bit general registers, so that the compiler
can schedule them to avoid conflicts. This also means that
LOAD/STORE and branch instructions have a one-cycle delay to
account for. However, because of the importance of multiply
and divide instructions, a special HI/LO pair of
multiply/divide registers exist which do have hardware
interlocks, since these take several cycles to execute and
complicate instruction scheduling.

The project eventually lead to the commercial MIPS R2000
processor.

(1995-02-09)
multiprocessor
(foldoc)
parallel processing
multiprocessing
multiprocessor
parallel
parallel computing

(Or "multiprocessing") The simultaneous use of more
than one computer to solve a problem. There are many
different kinds of parallel computer (or "parallel
processor"). They are distinguished by the kind of
interconnection between processors (known as "processing
elements" or PEs) and between processors and memory. {Flynn's
taxonomy} also classifies parallel (and serial) computers
according to whether all processors execute the same
instructions at the same time ("{single instruction/multiple
data}" - SIMD) or each processor executes different
instructions ("multiple instruction/multiple data" - MIMD).

The processors may either communicate in order to be able to
cooperate in solving a problem or they may run completely
independently, possibly under the control of another processor
which distributes work to the others and collects results from
them (a "processor farm"). The difficulty of cooperative
problem solving is aptly demonstrated by the following dubious
reasoning:

If it takes one man one minute to dig a post-hole
then sixty men can dig it in one second.

Amdahl's Law states this more formally.

Processors communicate via some kind of network or bus or a
combination of both. Memory may be either shared memory
(all processors have equal access to all memory) or private
(each processor has its own memory - "distributed memory")
or a combination of both.

Many different software systems have been designed for
programming parallel computers, both at the operating system
and programming language level. These systems must provide
mechanisms for partitioning the overall problem into separate
tasks and allocating tasks to processors. Such mechanisms may
provide either implicit parallelism - the system (the
compiler or some other program) partitions the problem and
allocates tasks to processors automatically or {explicit
parallelism} where the programmer must annotate his program to
show how it is to be partitioned. It is also usual to provide
synchronisation primitives such as semaphores and monitors
to allow processes to share resources without conflict.

Load balancing attempts to keep all processors busy by
allocating new tasks, or by moving existing tasks between
processors, according to some algorithm.

Communication between tasks may be either via shared memory
or message passing. Either may be implemented in terms of
the other and in fact, at the lowest level, shared memory uses
message passing since the address and data signals which flow
between processor and memory may be considered as messages.

The terms "parallel processing" and "multiprocessing" imply
multiple processors working on one task whereas "{concurrent
processing}" and "multitasking" imply a single processor
sharing its time between several tasks.

See also cellular automaton,symmetric multi-processing.

Usenet newsgroup: news:comp.parallel.

Institutions (http://ccsf.caltech.edu/other_sites.html),
{research groups
(http://cs.cmu.edu/~scandal/research-groups.html)}.

(2004-11-07)
optical signal processor
(foldoc)
optical computing
Optical Signal Processor
OSP

(Or "Optical Signal Processing") Operating on data
represented using electromagnetic radiation, e.g. visible
light, instead of the electrical signals used in a
conventional electronic digital computer.

Electronic digital computers are built from transistors.
These form components that store data and logic gates that
perform the low-level Boolean operations such as AND, OR
and NOT that are the basis of all digital computation.

The optical equivalent requires material with a non-linear
refractive index such that light beams can interact with each
other to perform the same Boolean operations.

Though the photons that carry optical signals offer some
theoretical advantages over the electrons that carry
electronic signals, there are many practical problems that
would have to be overcome before optical computing could
compete in terms of cost, power and speed.

(2015-08-21)
order code processor
(foldoc)
Order Code Processor

The ICL 2900, ICL 3900 and above term for
"CPU".

(1995-05-06)
parallel processor
(foldoc)
parallel processor
parallel computer

A computer with more than one {central processing
unit}, used for parallel processing.

(1996-04-23)
php: hypertext preprocessor
(foldoc)
PHP: Hypertext Preprocessor
PHP

(PHP) An Open Source,
server-side, cross-platform, scripting language used to
create dynamic web pages.

PHP can be embedded in HTML using special tags like:



This is stored in a file with a ".php" extension. The {web
server} passes the file to the PHP interpreter which
executes the code in the tags. The tagged code
is then replaced with its output, typically ordinary HTML, in
the response sent to the web browser.

PHP is a recursive acronym.

PHP Home (http://php.net/).

{Cheat sheet
(http://addedbytes.com/cheat-sheets/php-cheat-sheet/)}.

(2010-03-20)
preprocessor
(foldoc)
preprocessor
macro preprocessor

A program that transforms input data in some way
before it is read by the main program. In the case of a
compiler, the input is source code. The main advantage of
using a preprocessor is that it is possible to change the
specification of the input data without changing the main
program. The separation can also help to make the system's
overall behaviour easier to understand. The disadvantage is
that performance may be reduced by the extra input and output
performed between the two programs.

For example, the C preprocessor, cpp, handles textual
macro substitution (it acts as a "macro preprocessor"),
conditional compilation and inclusion of other files.

A preprocessor may be used to transform a program into a
simpler language, e.g. to transform C++ into C.

(2007-04-05)
processor direct slot
(foldoc)
Processor Direct Slot

(PDS) Apple Computer's name for a local bus
connection. Most Macintoshes have only one PDS connector.
Different Apple computers have different PDS specifications.

(1995-05-02)
processor farm
(foldoc)
processor farm
farm

A parallel processor where tasks are
distributed, or "farmed out", by one "farmer" processor to
several "worker" processors, and results are sent back to the
farmer. This arrangement is suitable for applications which
can be partitioned into many separate, independent tasks, the
canonical examples being ray tracing and the {Mandelbrot
set}. In order to be efficient, the extra time spent on
communications must be small compared to the time spent
processing each task.

(2001-05-28)
processor system modeling language
(foldoc)
Processor System Modeling Language

(PSML) A language for simulating computer systems
designs, implemented as a preprocessor to SIMSCRIPT.

["Processor System Modeling - A Language and Simulation
System", F. Pfisterer, Proc Symp on Simulation of Computer
Systems, Aug 1976].

(2009-05-11)
processor time
(foldoc)
processor time
CPU time

The amount of time a process takes to run, given
that it has exclusive and uninterrupted use of the CPU.
Note that in a modern computer, this would be very unusual,
and so the processor time calculation for most processes
involves adding up all the small amounts of time the CPU
actually spends on the process.

Some systems break processor time down into user time and
system time.

Compare wall clock time.

(1998-03-13)
programmed data processor
(foldoc)
Programmed Data Processor
PDP

(PDP) Early (1960's?) {Digital Equipment
Corporation} family of minicomputers. The best known ranges
were the PDP-10 and PDP-11. PAL was the {assembly
language}.

(1997-11-21)
raster image processor
(foldoc)
Raster Image Processor

(RIP) A device (usually hardware but
can be software) that takes a Page Description Language
description of a page and converts it into a bitmap for
printing.

(2003-09-10)
scalable processor architecture
(foldoc)
Scalable Processor ARChitecture

(SPARC) An instruction set architecture designed
by Sun Microsystems for their own use in 1985. Sun was a
maker of 680x0-based Unix workstations. Research
versions of RISC processors had promised a major step
forward in speed but existing manufacturers were slow to
introduce a RISC type processor, so Sun went ahead and
developed its own, based on the {University of California at
Berkley}'s RISC I and RISC II 1980-2. In keeping with
their open philosophy, they licenced it to other companies,
rather than manufacture it themselves. The evolution and
standardisation of SPARC is now directed by the non-profit
consortium SPARC International, Inc.

SPARC was not the first RISC processor. The AMD 29000
came before it, as did the MIPS R2000 (based on Stanford's
design) and Hewlett-Packard Precision Architecture CPU,
among others. The SPARC design was radical at the time, even
omitting multiple cycle multiply and divide instructions (like
a few others), while most RISC CPUs are more conventional.

SPARC implementations usually contain 128 or 144 registers,
(CISC designs typically had 16 or less). At each time 32
registers are available - 8 are global, the rest are allocated
in a "window" from a stack of registers. The window is moved
16 registers down the stack during a function call, so that
the upper and lower 8 registers are shared between functions,
to pass and return values, and 8 are local. The window is
moved up on return, so registers are loaded or saved only at
the top or bottom of the register stack. This allows
functions to be called in as little as 1 cycle. Like some
other RISC processors, reading global register zero always
returns zero and writing it has no effect. SPARC is
pipelined for performance, and like previous processors, a
dedicated condition code register holds comparison results.

SPARC is "scalable" mainly because the register stack can be
expanded (up to 512, or 32 windows), to reduce loads and saves
between functions, or scaled down to reduce interrupt or
context switch time, when the entire register set has to be
saved. Function calls are usually much more frequent, so the
large register set is usually a plus.

SPARC is not a chip, but a specification, and so there are
various implementations of it. It has undergone revisions,
and now has multiply and divide instructions. Most versions
are 32 bits, but there are designs for 64-bit and
superscalar versions. SPARC was submitted to the IEEE
society to be considered for the P1754 microprocessor
standard.

SPARC(R) is a registered trademark of SPARC International,
Inc. in the United States and other countries.

[The SPARC Architecture Manual, v8, ISBN 0-13-825001-4].

(1994-11-01)
serial processor
(foldoc)
serial processor

A computer whose central processing unit
performs a single machine-level operation at a time. This
term would be used mostly in contrast to a {parallel
processor}.

(2008-03-14)
single edge processor package
(foldoc)
Single Edge Processor Package
SEPP

(SEPP) The caseless daughterboard containing
Intel's Celeron processor. A SEPP fits into a Slot 1
connector.

(1999-08-04)
symmetric multiprocessor
(foldoc)
symmetric multiprocessing
symmetric multiprocessor

(SMP) Two or more similar processors connected
via a high-bandwidth link and managed by one {operating
system}, where each processor has equal access to I/O devices.
This is in contrast to the "compute server" kind of
parallel processor where a front-end processor handles all
I/O to disks, terminals and local area network etc.

The processors are treated more or less equally, with
application programs able to run on any or perhaps all
processors in the system, interchangeably, at the operating
system's discretion. Simple MP usually involves assigning
each processor to a fixed task (such as managing the file
system), reserving the single main CPU for general tasks.

OS/2 currently supports so-called HMP (Hybrid
Multiprocessing), which provides some elements of symmetric
multiprocessing, using add-on IBM software called MP/2. OS/2
SMP was planned for release in late 1993.

(1995-03-19)
uniprocessor
(foldoc)
uniprocessor

(From "uni" - one) A computer with a single
central processing unit, in contrast to a {parallel
processor}. Most personal computers are currently (March
1997) uniprocessors. Some more expensive computers, typically
servers, have multiple processors to provide increased
throughput.

See also symmetric multiprocessor and {massively parallel
processor}.

(1997-03-23)
vector processor
(foldoc)
array processor
vector processor

(Or "vector processor") A computer, or extension
to its arithmetic unit, that is capable of performing
simultaneous computations on elements of an array or table
of data in some number of dimensions.

The IBM AltiVec (the "Velocity Engine" used in the {Apple
G4} computers) is a vector processor.

Common uses for array processors include analysis of fluid
dynamics and rotation of 3d objects, as well as data
retrieval, in which elements of a database are scanned
simultaneously. Array processors are very rare now (1998).

{Array presentation
(http://cs.njit.edu/leon/105/c5/index.htm)}.

(2003-09-11)
word processor
(foldoc)
word processor
word processing

A program used to create and print (chiefly
textual) documents that might otherwise be prepared on a
typewriter. The key advantage of word processor is its
ability to make changes easily, such as correcting spelling,
changing margins, or adding, deleting, and relocating entire
blocks of text. Once created, the document can be printed
quickly and accurately and saved for later modifications.

Today most popular word processors, such as Microsoft Word,
offer a much greater range of facilities than the first such
programs.

Compare text editor.

(1995-04-14)
x86 processor socket
(foldoc)
x86 processor socket
Socket 1
Socket 2
Socket 3
Socket 4
Socket 5
Socket 6

One of the series of standard sockets
into which you can plug various x86 microprocessors.
These vary in the number of pins, package, voltages, bus
speeds, and supported processors. Motherboards often have
clock multipliers so that the processor runs at a multiple
of the bus speed.

Socket 1, 169 pin LIF/ZIF PGA (17x17), 5v, 16-33 MHz
486 SX, 486 DX, 486 DX2, DX4 Overdrive. Socket 1 was
the first standard Intel 486 socket.

Socket 2, 238 pin LIF/ZIF PGA (19x19), 5v, 25-50 MHz 486 SX,
486 DX, 486 DX2, 486 DX4, DX4 & Pentium Overdrive. Updated
Socket 1, added support for Pentium Overdrive processors.

Socket 3, 237 pin LIF/ZIF PGA (19x19), 3.3/5v, 25-50 MHz 486
SX, 486 DX, 486 DX2, 486 DX4, DX4 & Pentium Overdrive.
Supports 5V & 3.3V processors, considered the latest 486
socket.

Socket 4, 273 pin LIF/ZIF PGA (21x21), 5v, 60/66 MHz Pentium
60/66 and Pentium Overdrive, only 5v.

Socket 5, 296 pin LIF/ZIF, 320 pin LIF/ZIF SPGA (19x19 or
37x37), 3.3v, 50/60/66 MHz Pentium 75 - 133MHz, Pentium
Overdrive, only 3.3v.

Socket 6, 235 pin ZIF PGA (19x19), 3.3v, 25-40MHz. Unpopular
advanced Socket 3, rarely seen / paper spec 486 DX4, Pentium
Overdrive, only 3.3v.

See also Socket 7, Socket 8, Super 7, Slot 1, {Slot
2}, Slot A.

{CPU Sockets chart
(http://users.erols.com/chare/sockets.htm)}.

CPU Sockets (http://webm3308.ntx.net/cpusockets.htm).

(1999-08-05)

Nenašli ste slovo čo ste hľadali ? Doplňte ho do slovníka.

na vytvorenie tejto webstránky bol pužitý dictd server s dátami z sk-spell.sk.cx a z iných voľne dostupných dictd databáz. Ak máte klienta na dictd protokol (napríklad kdict), použite zdroj slovnik.iz.sk a port 2628.

online slovník, sk-spell - slovníkové dáta, IZ Bratislava, Malé Karpaty - turistika, Michal Páleník, správy, údaje o okresoch V4