Logic and Computer Design - PowerPoint PPT Presentation

About This Presentation
Title:

Logic and Computer Design

Description:

... Table One Stage of Logic Circuit One Stage of Shift ... One Stage of AL shift unit ... Circuit for Arithmetic Micro-operations One Stage of ... – PowerPoint PPT presentation

Number of Views:175
Avg rating:3.0/5.0
Slides: 26
Provided by: Sa781
Learn more at: https://www.unf.edu
Category:

less

Transcript and Presenter's Notes

Title: Logic and Computer Design


1
Logic and Computer Design
  • Dr. Sanjay P. Ahuja, Ph.D.
  • FIS Distinguished Professor of CIS (2010-2014)
  • School of Computing, UNF

2
Register Transfers and Datapaths
  • Digital systems are partitioned into modular
    sub-systems (modules), each of which performs a
    some functional task.
  • These modules are constructed hierarchically from
    functional blocks such as registers, decoders,
    counters, multiplexers etc.
  • Modules are of two types Datapath, which
    performs data-processing operations, and Control
    Unit, which determines the sequence of those
    operations.

3
Register Transfers and Datapaths
  • Datapaths are defined by their registers and the
    operations that are performed on the data stored
    in the registers.
  • Datapath comprise of registers ALU
  • The operations executed on data stored in
    registers are called micro-operations.
  • Symbolic notation used to describe
    micro-operation transfers among registers is
    called a Register Transfer Language (RTL).

4
Computer registers are labeled as MAR, PC, IR, R1
etc.Individual flip-flops in an n-bit register
are numbered 0 to n-1 (0 is the LSB position)
5
The RTL statementK1 R2 ? R1 denotes a
transfer from R1 to R2 when K1 1Note All
transfers occur during the clocks positive edge
transition. Even though control condition K1
becomes active just after time t, actual transfer
into register R2 does not occur until R2 is
triggered by the next positive transition at time
t1.
6
Register Transfers Using a Bus System
  • Since a computer has many registers, paths must
    be provided to transfer information from one
    register to another.
  • An efficient scheme for transferring information
    between registers in a multiple-register
    configuration is a common bus system. A bus
    structure consists of a set of common lines, one
    for each bit of a register, through which binary
    information is transferred one at a time.
  • Control signals determine which register is
    selected by the bus during each particular
    register transfer.
  • Bus systems can be designed using multiplexers
    and tri-state buffers.

7
Register Transfers Multiplexer Based Bus System
  • Bus System for four 4-bit registers

8
Register Transfers Multiplexer Based Bus System
  • The number of multiplexers required to construct
    the bus is equal to n, where n is the number of
    bits in each register.
  • The size of each multiplexer must be k 1 since
    it multiplexes k data lines, where k is the
    number of registers.
  • If there are 8 registers of 16 bits each, then we
    need 16 multiplexers, each of which is an 8 1
    multiplexer to create the 16 bit data bus.
  • Disadvantage of Mux-based bus system
  • Mux-based bus systems may require high fan-in OR
    gates depending on the number of number of
    registers. In the example above we need an 8 1
    mux since we have 8 registers to select from for
    the bus. Building an OR gate with such a high
    fan-in requires multiple levels of OR gates,
    introducing more logic and increasing delay. So
    such mux-based bus systems tend to be slower than
    tri-state buffer based bus systems.

9
Register Transfers Tri-state Buffer Based Bus
System
  • A bus system can be constructed with tri-state
    gates instead of multiplexers.
  • A three-state gate is a digital circuit that
    shows three states. Two of the states are
    equivalent to logic 1 and 0. The third state is a
    high impedance state. The high-impedance state
    behaves as an open circuit, i.e., the output is
    disconnected from the input and does not have any
    logical significance.

10
Register Transfers Tri-state Buffer Based Bus
System
  • The construction of a bus system with tri-state
    buffers is shown in the following figure

11
Bus and Memory Transfers
  • Memory Read
  • The read operation for the transfer of a memory
    unit M from an address register MAR to another
    data register DR can be illustrated as
  • Read DR ?MMAR
  • Memory Write
  • The write operation transfer the contents of a
    data register to a memory word M selected by the
    address. Assume that the input data are in
    register R1 and the address in the MAR. The write
    operation can be stated symbolic as follows
  • Write MMAR ? R1
  • This cause a transfer on information from
    R1 into the memory word M selected by the
  • address in AR

12
Types of Micro-operations
  • Register Transfer
  • Transfer binary information from one register to
    another
  • P R2 ? R1
  • Arithmetic
  • Perform arithmetic operations on numeric data
    stored in registers
  • P R3 ? R1 R2
  • Logic
  • Perform bit manipulation operation on non-numeric
    data stored in registers.
  • P R3 ? R1 exor R2
  • Shift
  • Perform shift operations on data stored in
    registers
  • P R2 ? shl R1

13
Fig__Tbl_Chapter_7.pdf - Adobe Reader
  • Register Transfers

14
Arithmetic Micro-operations
15
Logic Micro-operations
16
Shift Micro-operations
17
Types of Shift
  • Arithmetic Shifts
  • An arithmetic shift micro operation shifts a
    signed binary number to the left or right. The
    effect of an arithmetic shift left operation is
    to multiply the binary number by 2. Similarly an
    arithmetic shift right divides the number by 2.
  • Because the sign of the number must remain the
    same arithmetic shift-right must leave the sign
    bit unchanged, when it is multiplied or divided
    by 2. The left most bit in a register holds the
    sign bit, and the remaining bits hold the number.
    The sign bit is 0 for positive and 1 for
    negative. Negative numbers are in 2s complement
    form. Following figure shows a typical register
    of n bits with an arithmetic shift right.

18
Types of Shift
  • Arithmetic Shifts
  • An arithmetic shift left inserts a 0 into R0,
    shifts all other bits to the left. Initial Rn-1
    is lost and replaced by Rn-2.
  • A sign reversal is occurs if the bit in Rn-1
    changes in value after the shift after the shift.
    This happens if the multiplication by 2 causes an
    overflow.
  • Detecting Overflow overflow occurs if, before
    the shift, Rn-1 ? Rn-2.
  • An overflow flip-flop Vs is used to detect
    overflow.
  • Vs Rn-1 exor Rn-2

19
Types of Shift
  • Logical Shifts

20
Types of Shift
  • Circular Shifts (Rotate)

21
Arithmetic Circuit for Arithmetic Micro-operations

22
Arithmetic Circuit for Arithmetic Micro-operations
  • Arithmetic Circuit Function Table

23
One Stage of Logic Circuit
24
  • One Stage of Shift Circuit
  • (Bidirectional Shift Register with Parallel Load)

25
  • One Stage of AL shift unit
  • (S3S200 for arithmetic operations, S3S201 for
    logic operations, S3S210 for shift right and
    S3S211 for shift left)
Write a Comment
User Comments (0)
About PowerShow.com