1 / 19

Design of the Processor Control Unit Design

Design of the Processor Control Unit Design. ITCS 3181 Logic and Computer Systems 2014 B. Wilkinson Slides7.ppt Modification date: March 27, 2014. Control Unit Control unit needs to: Generate signals for each register transfer action and other operations specified, and

bracha
Télécharger la présentation

Design of the Processor Control Unit Design

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Design of the Processor Control Unit Design ITCS 3181 Logic and Computer Systems 2014 B. Wilkinson Slides7.ppt Modification date: March 27, 2014

  2. Control Unit Control unit needs to: Generate signals for each register transfer action and other operations specified, and Be able to sequence through the steps for fetching/ executing the instructions in the program

  3. Implementing Register Transfer Actions First consider P  Q Pis the destination register and Q is the source register. There may be many sources and destinations. Convenient to attached all sources and destinations to a common set of wires:

  4. Two logic signals required, one to select source, one to select destination: Transfer takes place when destination register activated with clock.

  5. Timing Suppose need a sequence of steps to execute a particular instruction is: T0: S  T T1: P  Q T2: R  P . . at times T0, T1, T2 ... , where S, P, and R are destinations and T, Q, and P are sources connected to the internal bus. Strictly, the action S  T is done when T0 = 1

  6. Could use a logic circuit to generate T0, T1, T2, ...:

  7. Example T5: MAR  PC

  8. Usually, other conditions needed apart for a timing signal being present. Example x.T5: MAR  PC AND operation

  9. Operations other than register transfer Sometimes, operations other than register transfer are specified. Example R  P + R specifies an addition to be performed prior to the register transfer. Depending upon implementation, may need to be decomposed into a series of elementary steps. If we provide three separate buses, one for each source and one for the destination, possible to implement step in one time period - see next slide.

  10. Processor with Three Internal Buses Control unit still has to provide necessary signals at correct times.

  11. More complex steps - operation and data transfer Example Z  X + Y

  12. INSTRi . Tj: Z  X + Y Similar logic circuits for each step.

  13. Selecting source and destination registers - directly from instruction:

  14. Fetch Cycle T0: MAR  PC T1: MDR  [MAR] (memory read operation) T2: IR  MDR, PC  PC + 4 This can could be done together given sufficient resources (data paths). Generally PC is a separate counter.

  15. Implementing Execute Cycle Depends upon fetched instruction (in IR) Incorporating a signal to indicate particular instruction has been decoded, say INSTRi, in general we have: INSTRi.T3: S  T INSTRi.T4: P  Q INSTRi.T5: R  P Execute cycle assumed to start at clock period T3. AND operation

  16. General Arrangement for Execute Cycle Assumed to start at clock period T3:INSTRi.T3: S  T INSTRi.T4: P  Q INSTRi.T5: R  P

  17. More Specific Example Suppose op-codes are: Op-code I31I30I29I28I27I26 Arithmetic/logic: Register-register000aaa Register-constant 001aaa Load 010xxx Store 011xxx Branch 100ccc Jump: PC relative 101xxx Register indirect 110xxx Jump-and-Link 111xxx where: aaa specifies arithmetic/logic operation ccc specifies branch condition xxx are don’t cares Up to 7 operations allowed in this design (00…00 = no-op)

  18. In this particular case, can simply use a 3-8 line decoder:

  19. Questions

More Related