introduction to digital logic -...

42
© Egemen K. Çetinkaya Introduction to Digital Logic Missouri S&T University CPE 2210 Counters/Timers Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology [email protected] http://web.mst.edu/~cetinkayae/teaching/CPE2210Fall2016 14 November 2016 rev. 16.0 © 20142016 Egemen K. Çetinkaya

Upload: lamthu

Post on 24-Jul-2018

235 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Introduction to Digital Logic Missouri S&T University CPE 2210

Counters/Timers

Egemen K. Çetinkaya

Department of Electrical & Computer Engineering

Missouri University of Science and Technology

[email protected]

http://web.mst.edu/~cetinkayae/teaching/CPE2210Fall2016

14 November 2016 rev. 16.0 © 2014–2016 Egemen K. Çetinkaya

Page 2: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Counters/Timers Outline

• Introduction

• Counters

• Timers

• Summary

MST CPE2210 – Counters/Timers 14 November 2016 2

Page 3: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Digital Logic Systems Overview

• Combinatorial logic circuits for no memory systems

– Boolean algebra to mathematically design/analyze

– logic gates are building blocks

• Sequential logic circuits for memory systems

– Finite State Machines to mathematically design/analyze

– flip-flops and latches store memory

• flip-flops and latches are building blocks of sequential logic

• Sequential logic circuits (aka controllers) combine

– combinatorial circuits

– storage elements (e.g. registers)

MST CPE2210 – Counters/Timers 14 November 2016 3

Page 4: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Digital Systems Components

• Transducer: sensor + actuator

• Not all sensors/actuators require A2D/D2A conversion

• Digital system can be implemented:

– microprocessor

• readily available, cheap, easy to program, easy to reprogram

– custom circuit

• smaller, faster, consume less power

14 November 2016 MST CPE2210 – Counters/Timers 4

sensors and other inputs

Digital System

actuators and other outputs

A2D

D2A

analog phenomena

electric signal

digital data

digital data

electric signal

digital data

digital data

Page 5: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Digital Systems Paths

• Digital systems have two paths:

– datapath circuit

– control circuit

• Datapath circuit

– store data

– manipulate data

– transfer data from one part to another

• Control circuit

– controls the operation of datapath circuit

MST CPE2210 – Counters/Timers 14 November 2016 5

Page 6: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Datapath Components Building Block examples

• Registers

• Shifters

• Counters/timers

• Multiplexer/demultiplexers

• Decoders/encoders

• Adders

• Comparators

• Subtractors

• ALUs: Arithmetic Logic Units

MST CPE2210 – Counters/Timers 14 November 2016 6

Page 7: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

SR Flip-Flop Symbol and Characteristic Table

• SR flip-flop: Similar to SR latch, edge-triggered

MST CPE2210 – Counters/Timers 14 November 2016 7

S Q

Q R

S R 𝑸(t+1)

0 0 no change Q(t)

0 1 0

1 0 1

1 1 X

Page 8: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

D Flip-Flop Symbol and Characteristic Table

• The output follows input on the rising edge of clock

MST CPE2210 – Counters/Timers 14 November 2016 8

D Q

Q

D 𝑸(t+1)

0 0

1 1

Page 9: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

T Flip-Flop Symbol and Characteristic Table

• T flip-flop: toggle flip-flop

• The output toggles on the rising edge of clock

MST CPE2210 – Counters/Timers 14 November 2016 9

T Q

Q

T 𝑸(t+1)

0 Q(t)

1 Q’(t)

Page 10: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

JK Flip-Flop Symbol and Characteristic Table

• JK flip-flop: toggle flip-flop when JK is 11

MST CPE2210 – Counters/Timers 14 November 2016 10

J Q

Q K

J K 𝑸(t+1)

0 0 no change Q(t)

0 1 0

1 0 1

1 1 toggle Q’(t)

Page 11: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Counters Overview

• Sequential component that increments or decrements

• Example: – 4-bit up-counter example: 0000, 0001, …, 1111, 0000

– 4-bit down-counter example: 1111, 1110, …, 0000, 1111

• Counter wraps around

– terminal count (tc) control output becomes 1

• in the last clock cycle before wrapping around

• once wrapped around, tc value becomes 0 again

MST CPE2210 – Counters/Timers 14 November 2016 11

cnt

tc C

4-bit up-counter

4

clr

Page 12: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Counters Internal Design

• How can we design a simple counter?

MST CPE2210 – Counters/Timers 14 November 2016 12

Page 13: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Four-Bit Binary Ripple Up-Counter Internal Design

• Ripple counter is also called asynchronous counter

MST CPE2210 – Counters/Timers 14 November 2016 13

Q3 Q2 Q1 Q0

0 0 0 0

0 0 0 1

0 0 1 0

0 0 1 1

0 1 0 0

0 1 0 1

0 1 1 0

0 1 1 1

1 0 0 0

1 0 0 1

1 0 1 0

1 0 1 1

1 1 0 0

1 1 0 1

1 1 1 0

1 1 1 1

Page 14: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Four-Bit Binary Ripple Up-Counter Internal Design

• What is the problem with ripple counters?

MST CPE2210 – Counters/Timers 14 November 2016 14

Q3 Q2 Q1 Q0

0 0 0 0

0 0 0 1

0 0 1 0

0 0 1 1

0 1 0 0

0 1 0 1

0 1 1 0

0 1 1 1

1 0 0 0

1 0 0 1

1 0 1 0

1 0 1 1

1 1 0 0

1 1 0 1

1 1 1 0

1 1 1 1

Page 15: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Four-Bit Synchronous Up-Counter Internal Design

• Synchronous counters avoid settling time problem

MST CPE2210 – Counters/Timers 14 November 2016 15

Page 16: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Three-Bit Ripple Down-Counter Internal Design

• Ripple counter is also called asynchronous counter

MST CPE2210 – Counters/Timers 14 November 2016 16

Q2 Q1 Q0

0 0 0

1 1 1

1 1 0

1 0 1

1 0 0

0 1 1

0 1 0

0 0 1

0 0 0

T Q

Q Clock

T Q

Q

T Q

Q

1

Q 0 Q 1 Q 2

Clock

Q 0

Q 1

Q 2

Count 0 7 6 5 4 3 2 1 0

Page 17: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-10 Counter Internal Design

• Note that: clear has priority over load and count

MST CPE2210 – Counters/Timers 14 November 2016 17

Page 18: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

8-bit Synchronous Counter Internal Design

• Can we construct 8-bit counter from 4-bit counter?

MST CPE2210 – Counters/Timers 14 November 2016 18

Page 19: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

8-bit Synchronous Counter Internal Design

• We can construct 8-bit counter from 4-bit counter

MST CPE2210 – Counters/Timers 14 November 2016 19

It can be done via cascading.

Carry Output (CO) is connected

to the second counter. CO is

also known as terminal count (tc).

When CO is one it means we are

at 00001111, transitioning to

00010000 (assuming count-up)

Page 20: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Mod-4 Ring Counter Internal Design

• Ring counter: only 1 flip-flop is in 1 state

MST CPE2210 – Counters/Timers 14 November 2016 20

Page 21: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Three clocked JK flip-flops. Why?

MST CPE2210 – Counters/Timers 14 November 2016 21

Page 22: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Imagine we are counting a pattern

MST CPE2210 – Counters/Timers 14 November 2016 22

Q1 Q2 Q3

0 0 0

0 1 0

0 1 1

1 1 0

1 0 1

0 0 1

0 0 0

- - -

Pay attention that

it is not binary increments

Pattern repeats itself

Page 23: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Imagine we are counting a pattern

MST CPE2210 – Counters/Timers 14 November 2016 23

Present State Next State

Q1 Q2 Q3 Q1 Q2 Q3

0 0 0

0 1 0

0 1 1

1 1 0

1 0 1

0 0 1

Page 24: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Imagine we are counting a pattern

MST CPE2210 – Counters/Timers 14 November 2016 24

Present State Next State

Q1 Q2 Q3 Q1 Q2 Q3

0 0 0 0 1 0

0 1 0 0 1 1

0 1 1 1 1 0

1 1 0 1 0 1

1 0 1 0 0 1

0 0 1 0 0 0

Page 25: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

JK Flip-Flop Symbol and Characteristic Table

• JK flip-flop: toggle flip-flop when JK is 11

• Application table is shown on the right

MST CPE2210 – Counters/Timers 14 November 2016 25

J K 𝑸(t+1)

0 0 no change Q(t)

0 1 0

1 0 1

1 1 toggle Q’(t)

Q(t) Q(t+1) J K

0 0 0 -

0 1 1 -

1 0 - 1

1 1 - 0

Page 26: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Imagine we are counting a pattern

MST CPE2210 – Counters/Timers 14 November 2016 26

Present State Next State Flip-flop Input

Q1 Q2 Q3 Q1 Q2 Q3 J1 K1 J2 K2 J3 K3

0 0 0 0 1 0

0 1 0 0 1 1

0 1 1 1 1 0

1 1 0 1 0 1

1 0 1 0 0 1

0 0 1 0 0 0

Page 27: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

• Imagine we are counting a pattern

MST CPE2210 – Counters/Timers 14 November 2016 27

Present State Next State Flip-flop Input

Q1 Q2 Q3 Q1 Q2 Q3 J1 K1 J2 K2 J3 K3

0 0 0 0 1 0 0 - 1 - 0 -

0 1 0 0 1 1 0 - - 0 1 -

0 1 1 1 1 0 1 - - 0 - 1

1 1 0 1 0 1 - 0 - 1 1 -

1 0 1 0 0 1 - 1 0 - - 0

0 0 1 0 0 0 0 - 0 - - 1

Page 28: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

MST CPE2210 – Counters/Timers 14 November 2016 28

Page 29: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using JK Flip-Flops

MST CPE2210 – Counters/Timers 14 November 2016 29

Page 30: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using Flip-Flops

• Work at your pleasure on other FF implementations

MST CPE2210 – Counters/Timers 14 November 2016 30

Page 31: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

D Flip-Flop Symbol and Characteristic Table

• The output follows input on the rising edge of clock

• Application table is shown on the right

MST CPE2210 – Counters/Timers 14 November 2016 31

D Q(t+1)

0 0

1 1

Q(t) Q(t+1) D

0 0 0

0 1 1

1 0 0

1 1 1

Page 32: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using D Flip-Flops

MST CPE2210 – Counters/Timers 14 November 2016 32

Page 33: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

T Flip-Flop Symbol and Characteristic Table

• T flip-flop: toggle flip-flop

• The output toggles on the rising edge of clock

• Application table is shown on the right

MST CPE2210 – Counters/Timers 14 November 2016 33

T Q(t+1)

0 Q(t)

1 Q’(t)

Q(t) Q(t+1) T

0 0 0

0 1 1

1 0 1

1 1 0

Page 34: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using T Flip-Flops

MST CPE2210 – Counters/Timers 14 November 2016 34

Page 35: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

SR Flip-Flop Symbol and Characteristic Table

• SR flip-flop: Similar to SR latch, edge-triggered

• Application table is shown on the right

MST CPE2210 – Counters/Timers 14 November 2016 35

S R Q(t+1)

0 0 no change Q(t)

0 1 0

1 0 1

1 1 X

Q(t) Q(t+1) S R

0 0 0 -

0 1 1 0

1 0 0 1

1 1 - 0

Page 36: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Synchronous Mod-6 Counter Using SR Flip-Flops

MST CPE2210 – Counters/Timers 14 November 2016 36

Page 37: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Up/Down Counter Internal Design

• Can count either up or down

MST CPE2210 – Counters/Timers 14 November 2016 37

ld 4-bit register

C t c

4

4 4 4 4

4

c n t clr clr

dir

4-bit up/down counter

4 4

–1 +1

1 0 2 x 1

1 0 4-bit 2 x 1

Page 38: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Timers Overview

• Pulses output at user-specified timer interval

– when enabled

• “Ticks” like a clock

• Interval specified as multiple of base time unit

– if base is 1 µs and user wants pulse every 300 ms,

• loads 300,000 into timer

• Width is bitwidth that can be loaded

– e.g. 32-bit timer, with 1µs base, has a max. interval of 232 µs

MST CPE2210 – Counters/Timers 14 November 2016 38

Q

Page 39: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Timers Internal Design

• Can design using oscillator, register, down-counter

MST CPE2210 – Counters/Timers 14 November 2016 39

C tc

Q

1 microsec

oscillator

ld

32-bit down-counter

unused

enable cnt

ld load

32

M

32-bit register

1 0 4-bit 2x1

-1

load

enable

Q

32-bit 1-microsec

timer

32

M

Page 40: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

Counters/Timers Summary

• Counters are sequential components that

– increments or decrements

• Ripple counters are known as asynchronous counters

– causes problems related to propagation delay

• Ring counter: only 1 flip-flop is in 1 state

• Binary patterns can be counted too

• Up/down counter can count both directions

• Timers pulse output at user-specified timer interval

MST CPE2210 – Counters/Timers 14 November 2016 40

Page 41: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

References and Further Reading

• [V2011] Frank Vahid, Digital Design with RTL Design, VHDL, and Verilog, 2nd edition, Wiley, 2011.

• [G2003] Donald D. Givone, Digital Principles and Design, McGraw-Hill, 2003.

• [BV2009] Stephen Brown and Zvonko Vranesic, Fundamentals of Digital Logic with VHDL Design, 3rd edition, McGraw-Hill, 2009.

MST CPE2210 – Counters/Timers 14 November 2016 41

Page 42: Introduction to Digital Logic - web.mst.eduweb.mst.edu/.../CPE2210Fall2016/CPE2210-F2016-counters-timers.pdf · Introduction to Digital Logic ... Four-Bit Synchronous Up-Counter Internal

© Egemen K. Çetinkaya

End of Foils

MST CPE2210 – Counters/Timers 14 November 2016 42