All Topics  
Hardwired control

 

   Email Print
   Bookmark   Link






 

Hardwired control



 
 
To execute instructions, a computer
Computer

A computer is a machine that manipulates Data according to a list of Code .The first devices that resemble modern computers date to the mid-20th century , although the computer concept and various machines similar to computers existed earlier....
's processor
Processor

Processor may refer to:In computing:* Central processing unit , the part of a computer that interprets instructions, in case of a multi-core processor it refers to multiple CPU's....
 must generate the control signals used to perform the processor's actions in the proper sequence. This sequence of actions can either be executed by another processor's software (for example in software emulation or simulation of a processor) or in hardware. Hardware methods fall into two categories: the processor's hardware signals are generated either by hardwired control, in which the instruction bits directly generate the signals, or by microprogrammed control in which a dedicated microcontroller executes a microprogram to generate the signals.

Before microprocessor
Microprocessor

A microprocessor incorporates most or all of the functions of a central processing unit on a single integrated circuit . The first microprocessors emerged in the early 1970s and were used for electronic calculators, using Binary-coded decimal arithmetic on 4-bit Word ....
s, hardwired control usually was implemented using discrete components, flip-chips, or even rotating discs or drums. This can be generally done by two methods.

Method1: The classical method of sequential circuit design.






Discussion
Ask a question about 'Hardwired control'
Start a new discussion about 'Hardwired control'
Answer questions from other users
Full Discussion Forum



Encyclopedia


To execute instructions, a computer
Computer

A computer is a machine that manipulates Data according to a list of Code .The first devices that resemble modern computers date to the mid-20th century , although the computer concept and various machines similar to computers existed earlier....
's processor
Processor

Processor may refer to:In computing:* Central processing unit , the part of a computer that interprets instructions, in case of a multi-core processor it refers to multiple CPU's....
 must generate the control signals used to perform the processor's actions in the proper sequence. This sequence of actions can either be executed by another processor's software (for example in software emulation or simulation of a processor) or in hardware. Hardware methods fall into two categories: the processor's hardware signals are generated either by hardwired control, in which the instruction bits directly generate the signals, or by microprogrammed control in which a dedicated microcontroller executes a microprogram to generate the signals.

Before microprocessor
Microprocessor

A microprocessor incorporates most or all of the functions of a central processing unit on a single integrated circuit . The first microprocessors emerged in the early 1970s and were used for electronic calculators, using Binary-coded decimal arithmetic on 4-bit Word ....
s, hardwired control usually was implemented using discrete components, flip-chips, or even rotating discs or drums. This can be generally done by two methods.

Method1: The classical method of sequential circuit design. It attempts to minimize the amount of hardwire, in particular, by using only log2p flip flops to realize a p state circuit.

Method2: An approach that uses one flip flop per state and is known as one hot method. While expensive in terms of flip flops, this method simplifies controller unit design and debugging.

In practice, processor control units are often so complex that no one design method by itself can yield a satisfactory circuit at an acceptable cost. The most acceptable design may consist of several linked, but independently designed, sequential circuits.

Microprogramming made it possible to re-wire, as it were, a computer by simply downloading a new microprogram to it. This required dedicated hardware or an external processor. For example, some of DEC
Digital Equipment Corporation

Digital Equipment Corporation was a pioneering United States company in the computer industry. It is often referred to within the computing industry as DEC ....
's PDP-10
PDP-10

The PDP-10 was a mainframe computer manufactured by Digital Equipment Corporation from the late 1960s on; the name stands for "Programmed Data Processor model 10"....
 processors used a PDP-11
PDP-11

The PDP-11 was a series of 16-bit minicomputers sold by Digital Equipment Corporation from 1970 into the 1990s. Though not explicitly conceived as successor to DEC's PDP-8 computer in the Programmed Data Processor series of computers , the PDP-11 replaced the PDP-8 in many Real-time computing....
 as a front-end which uploaded a microprogram to the main processor at boot
Booting

In computing, booting is a Bootstrapping process that starts operating systems when the user turns on a computer system. A boot sequence is the initial set of operations that the computer performs when it is switched on....
 time.

Traditionally, a sewing machine
Sewing machine

A sewing machine is a textile machine used to stitch fabric or other material together with thread. Sewing machines were invented during the first Industrial Revolution to decrease the amount of manual sewing work performed in clothing companies....
s' stitch
Stitch

Stitch may refer to:*Sewing, a method of securing thread into textiles**Blanket stitch, used to reinforce the edge of thick materials**Cable knitting is a style of knitting in which the order of stitches is permuted...
 patterns and a washing machine
Washing machine

A washing machine, or washer, is a machine designed to clean laundry, such as clothing, towels and Bed sheets. The term is mostly applied only to machines that use water as the primary cleaning solution, as opposed to dry cleaning or even ultrasonic cleaners....
's wash programs were implemented as hardwired, usually mechanical, controls. In modern machines, these are instead implemented as software which controls a computer which controls the machine hardware. This makes it possible, for example, to download additional stitch patterns for a small fee or upgrade a machine without having to buy a complete new machine. It also opens up for intellectual property
Intellectual property

Intellectual property are law property over creations of the mind, both artistic and commercial, and the corresponding fields of law. Under intellectual property law, owners are granted certain exclusive rights to a variety of intangible assets, such as musical, literary, and artistic works; ideas, discoveries and inventions; and words, phra...
 rights issues.