SlideShare uma empresa Scribd logo
1 de 26
Prepared by: Ketaki Pattani
Enroll. No. 130210107039
College : GEC, Bhavnagar
Counters
Definition:
• Counter : A sequential circuit that goes through prescribed
sequence of states upon the application of clock pulse is
called a counter.
• The input pulses are called count pulses, may be clock pulses
or they may originate from an external source or occur at
prescribed intervals or at random.
• In a counter the sequence of states may follow binary count
or any other sequence.
• Counters are found in almost all equipment containing digital
system
Binary Counter :
• Binary Counter : A counter that follows the binary
sequence is called a Binary counter.
• An n-bit Binary Counter consists of n flipflops and
can count in binary from 0 to 2n-1.
• For eg. Binary counter for two digits is as follows:
Present State Next State
A B A B
0 0 0 1
0 1 1 0
1 0 1 1
1 1 0 0
00 01
1011
1
11
1
Example of binary counter
00 01
1011
0
0
0
10 1
1
1
Present State Inputs Next State
Q1 Q0 X Q1 Q0
0 0 0 0 1
0 0 1 1 1
0 1 0 1 0
0 1 1 0 0
1 0 0 1 1
1 0 1 0 1
1 1 0 0 0
1 1 1 1 0
• Here’s the another example for binary counter and its state
table:
Applications of Counters
• Some of the applications of counters in a
sequential circuits are as follows:
To count the number of occurances
Generating Timing sequences
Count up or down
Increment or decrement count
Sequence events
Divide frequency
Address memory
As temporary memory
Two principal categories
• Counters are divided in two categories, these
are:
– Asynchronous (Ripple) Counters - the first flip-flop
is clocked by the external clock pulse, and then
each successive flip-flop is clocked by the Q or Q'
output of the previous flip-flop.
– Synchronous Counters - all memory elements are
simultaneously triggered by the same clock.
Few other categories of counters:
• Apart from synchronous and asynchronous
counters which are the major ones the other
types of counters are as follows:
–Ring counter
–Johnson counter
–Decade counter
–Up–down counter
Asynchronous Counters:
• Here flipflop output transition serves as a source for
triggering other flipflops.
• This means that that the clockpulse is provided to a
single flipflop
• The change of state of a given flipflop is dependent
on the states of other flipflops.
• In other words the flipflops are not triggered by
simultanous clock pulses but the transitions in other
flipflops.
Asynchronous Counters
• This counter is called
asynchronous because not all flip
flops are have the same clock.
• Look at the waveform of the
output, Q, in the timing diagram.
It resembles a clock as well.
• This provides a clock that runs
twice as slow. If we feed the
clock into a T flip flop, where T is
hardwired to 1. The output will
be a clock who's period is twice
as long.
Two-bit asynchronous counter
• The external clock is
connected to the clock
input of the first flip-flop
only.
• So, it changes state at the
negative edge of each
clock pulse, but the next
flipflop changes only
when triggered by the
negative edge of the Q
output of the first one.
Two-bit asynchronous counter
• Because of the inherent
propagation delay through a
flip-flop, the transition of
the input clock pulse and a
transition of the Q output of
FF0 can never occur at
exactly the same time.
• Therefore, the flip-flops
cannot be triggered
simultaneously, producing
an asynchronous operation.
• Eg : As shown, there is some
small delay between the
CLK, Q0 and Q1 transitions.
Two-bit asynchronous counter
• Usually, all the CLEAR inputs are connected together,
so that a single pulse can clear all the flip-flops
before counting starts.
• The 2-bit ripple counter circuit above has four
different states, each one corresponding to a count
value.
• Similarly, a counter with n flip-flops can have 2N
states.
• The number of states in a counter is known as its
mod (modulo) number.
Two-bit asynchronous counter
• Thus a 2-bit counter is a
mod-4 counter.
• This is because the
most significant flip-flop
produces one pulse for
every n pulses at the
clock input of the least
significant flip-flop .
.
3 bit asynchronous “ripple” counter
using T flip flops
• This is called as a ripple
counter due to the way the
FFs respond one after
another in a kind of
rippling effect.
Synchronous Counters
• To eliminate the "ripple" effects, use a common clock for each flip-
flop and a combinational circuit to generate the next state.
• For an up-counter,
use an incrementer =>
D3 Q3
D2 Q2
D1 Q1
D0 Q0
Clock
Incre-
menter
A3
A2
A1
A0
S3
S2
S1
S0
Synchronous Counters
• To eliminate the "ripple" effects, use a common clock
for each flip-flop and a combinational circuit to
generate the next state.
• Hence the counters in which all the flipflops are
provided with a clock pulse simultanously are called
the Synchronous counters.
• Synchronous counters may be of the following types
– Up counter
– Down counter
• Internal details =>
• Internal Logic
– XOR complements each bit
– AND chain causes complement
of a bit if all bits toward LSB
from it equal 1
• Count Enable
– Forces all outputs of AND
chain to 0 to “hold” the state
• Carry Out
– Added as part of incrementer
– Connect to Count Enable of
additional 4-bit counters to
form larger counters
Synchronous Counters (continued)
Incrementer
Design Example: Synchronous BCD
• Use the sequential logic model to design a synchronous BCD counter with
D flip-flops
• State Table =>
• Input combinations
1010 through 1111
are don’t cares
Current State
Q8 Q4 Q2 Q1
Next State
Q8 Q4 Q2 Q1
0 0 0 0 0 0 0 1
0 0 0 1 0 0 1 0
0 0 1 0 0 0 1 1
0 0 1 1 0 1 0 0
0 1 0 0 0 1 0 1
0 1 0 1 0 1 1 0
0 1 1 0 0 1 1 1
0 1 1 1 1 0 0 0
1 0 0 0 1 0 0 1
1 0 0 1 0 0 0 0
Synchronous BCD (continued)
• Use K-Maps to two-level optimize the next state
equations and manipulate into forms containing XOR
gates:
D1 = Q1’
• D2 = Q2 + Q1Q8’
D4 = Q4 + Q1Q2
D8 = Q8 + (Q1Q8 + Q1Q2Q4)
• Y = Q1Q8
• The logic diagram can be drawn from these equations
– An asynchronous or synchronous reset should be added
Synchronous BCD (continued)
• There are chances that
counter is perturbed by a
power disturbance or other
interference and it enters a
state other than 0000
through 1001.
• Find the actual values of the
six next states for the don’t
care combinations from the
equations
• Find the overall state
diagram to assess behavior
for the don’t care states
(states in decimal)
. Present State Next State
Q8 Q4 Q2 Q1 Q8 Q4 Q2 Q1
1 0 1 0 1 0 1 1
1 0 1 1 0 1 1 0
1 1 0 0 1 1 0 1
1 1 0 1 0 1 0 0
1 1 1 0 1 1 1 1
1 1 1 1 0 0 1 0
Unused states
• The examples shown so
far have all had 2n
states,
and used n flip-flops. But
sometimes you may have
unused, leftover states.
• For example, here is a
state table and diagram
for a counter that
repeatedly counts from 0
(000) to 5 (101).
• But there are also the
unused states in the state
table.
. Present State Next State
Q2 Q1 Q0 Q2 Q1 Q0
0 0 0 0 0 1
0 0 1 0 1 0
0 1 0 0 1 1
0 1 1 1 0 0
1 0 0 1 0 1
1 0 1 0 0 0
1 1 0 ? ? ?
1 1 1 ? ? ?
001
010
011
100
101
000
Unused states can be don’t cares…
• To get the simplest possible
circuit, one can fill in don’t
cares for the next states.
This will also result in don’t
cares for the flip-flop inputs,
which can simplify the
hardware.
• If the circuit somehow ends
up in one of the unused
states (110 or 111), its
behavior will depend on
exactly what the don’t cares
were filled in with.
.
Present State Next State
Q2 Q1 Q0 Q2 Q1 Q0
0 0 0 0 0 1
0 0 1 0 1 0
0 1 0 0 1 1
0 1 1 1 0 0
1 0 0 1 0 1
1 0 1 0 0 0
1 1 0 x x x
1 1 1 x x x
001
010
011
100
101
000
Other possibility
• To get the safest possible
circuit, you can explicitly
fill in next states for the
unused states 110 and
111.
• This guarantees that even
if the circuit somehow
enters an unused state, it
will eventually end up in a
valid state.
• This is called a self-
starting counter.
.Present State Next State
Q2 Q1 Q0 Q2 Q1 Q0
0 0 0 0 0 1
0 0 1 0 1 0
0 1 0 0 1 1
0 1 1 1 0 0
1 0 0 1 0 1
1 0 1 0 0 0
1 1 0 0 0 0
1 1 1 0 0 0
001
010
011
100
101
000
111110
Ring counters are implemented as shown where output of a flipflop is
given as an input to the next flipflop except the last one. Here the
normal output of the last flipflop is connected back to the input of the
first one. Hence it is called Ring counter.
Ring Counter
Johnson Counter
The Johnson counter, also known as the twisted-ring counter,
is exactly the same as the ring counter except that the inverted
output of the last flip-flop is connected to the input of the first
flip-flop.
If it starts from 000, 100, 110, 111, 011 and 001, and the
sequence is repeated so long as there is input pulse.
Counters

Mais conteúdo relacionado

Mais procurados

Synchronous counters
Synchronous countersSynchronous counters
Synchronous counters
Lee Diaz
 
Registers and counters
Registers and counters Registers and counters
Registers and counters
Deepak John
 

Mais procurados (20)

Ring counter
Ring counterRing counter
Ring counter
 
Counters
CountersCounters
Counters
 
Counters
CountersCounters
Counters
 
Flip-Flop || Digital Electronics
Flip-Flop || Digital ElectronicsFlip-Flop || Digital Electronics
Flip-Flop || Digital Electronics
 
Synchronous counters
Synchronous countersSynchronous counters
Synchronous counters
 
Digital Electronics - Counters
Digital Electronics - CountersDigital Electronics - Counters
Digital Electronics - Counters
 
Sequential circuits in Digital Electronics
Sequential circuits in Digital ElectronicsSequential circuits in Digital Electronics
Sequential circuits in Digital Electronics
 
Flipflop
FlipflopFlipflop
Flipflop
 
Combinational Circuits & Sequential Circuits
Combinational Circuits & Sequential CircuitsCombinational Circuits & Sequential Circuits
Combinational Circuits & Sequential Circuits
 
Counters
Counters Counters
Counters
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits
 
Counters
CountersCounters
Counters
 
Ring Counter.pptx
Ring Counter.pptxRing Counter.pptx
Ring Counter.pptx
 
latches
 latches latches
latches
 
J - K & MASTERSLAVE FLIPFLOPS
J - K & MASTERSLAVE FLIPFLOPSJ - K & MASTERSLAVE FLIPFLOPS
J - K & MASTERSLAVE FLIPFLOPS
 
Sequential circuits
Sequential circuitsSequential circuits
Sequential circuits
 
Presentation on Flip Flop
Presentation  on Flip FlopPresentation  on Flip Flop
Presentation on Flip Flop
 
D and T Flip Flop
D and T Flip FlopD and T Flip Flop
D and T Flip Flop
 
Binary multipliers
Binary multipliersBinary multipliers
Binary multipliers
 
Registers and counters
Registers and counters Registers and counters
Registers and counters
 

Semelhante a Counters

Counter with memes
Counter with memesCounter with memes
Counter with memes
Lee Diaz
 
Counter with memes
Counter with memesCounter with memes
Counter with memes
Lee Diaz
 

Semelhante a Counters (20)

Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4
 
Basics Counters
Basics Counters Basics Counters
Basics Counters
 
Chapter 7_Counters (EEEg4302).pdf
Chapter 7_Counters (EEEg4302).pdfChapter 7_Counters (EEEg4302).pdf
Chapter 7_Counters (EEEg4302).pdf
 
Computer system architecture 16 counters
Computer system architecture 16 countersComputer system architecture 16 counters
Computer system architecture 16 counters
 
Digital Counter Design
 Digital Counter Design Digital Counter Design
Digital Counter Design
 
Presentation on Counters for (Digital Systems Design).pptx
Presentation on Counters for (Digital Systems Design).pptxPresentation on Counters for (Digital Systems Design).pptx
Presentation on Counters for (Digital Systems Design).pptx
 
Counter with memes
Counter with memesCounter with memes
Counter with memes
 
Counter with memes
Counter with memesCounter with memes
Counter with memes
 
Counter
CounterCounter
Counter
 
Counters r012
Counters  r012Counters  r012
Counters r012
 
counters.ppt
counters.pptcounters.ppt
counters.ppt
 
COUNTERS.pptx
COUNTERS.pptxCOUNTERS.pptx
COUNTERS.pptx
 
Unit4_DE.pptx
Unit4_DE.pptxUnit4_DE.pptx
Unit4_DE.pptx
 
Synchronous down counter
Synchronous down counterSynchronous down counter
Synchronous down counter
 
Digital counter
Digital counter Digital counter
Digital counter
 
Counters
CountersCounters
Counters
 
Counters
CountersCounters
Counters
 
COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)
 
COUNTERS [Synchronous and Asynchronous]
COUNTERS [Synchronous and Asynchronous]COUNTERS [Synchronous and Asynchronous]
COUNTERS [Synchronous and Asynchronous]
 
COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)
 

Último

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Último (20)

This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 

Counters

  • 1. Prepared by: Ketaki Pattani Enroll. No. 130210107039 College : GEC, Bhavnagar Counters
  • 2. Definition: • Counter : A sequential circuit that goes through prescribed sequence of states upon the application of clock pulse is called a counter. • The input pulses are called count pulses, may be clock pulses or they may originate from an external source or occur at prescribed intervals or at random. • In a counter the sequence of states may follow binary count or any other sequence. • Counters are found in almost all equipment containing digital system
  • 3. Binary Counter : • Binary Counter : A counter that follows the binary sequence is called a Binary counter. • An n-bit Binary Counter consists of n flipflops and can count in binary from 0 to 2n-1. • For eg. Binary counter for two digits is as follows: Present State Next State A B A B 0 0 0 1 0 1 1 0 1 0 1 1 1 1 0 0 00 01 1011 1 11 1
  • 4. Example of binary counter 00 01 1011 0 0 0 10 1 1 1 Present State Inputs Next State Q1 Q0 X Q1 Q0 0 0 0 0 1 0 0 1 1 1 0 1 0 1 0 0 1 1 0 0 1 0 0 1 1 1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 • Here’s the another example for binary counter and its state table:
  • 5. Applications of Counters • Some of the applications of counters in a sequential circuits are as follows: To count the number of occurances Generating Timing sequences Count up or down Increment or decrement count Sequence events Divide frequency Address memory As temporary memory
  • 6. Two principal categories • Counters are divided in two categories, these are: – Asynchronous (Ripple) Counters - the first flip-flop is clocked by the external clock pulse, and then each successive flip-flop is clocked by the Q or Q' output of the previous flip-flop. – Synchronous Counters - all memory elements are simultaneously triggered by the same clock.
  • 7. Few other categories of counters: • Apart from synchronous and asynchronous counters which are the major ones the other types of counters are as follows: –Ring counter –Johnson counter –Decade counter –Up–down counter
  • 8. Asynchronous Counters: • Here flipflop output transition serves as a source for triggering other flipflops. • This means that that the clockpulse is provided to a single flipflop • The change of state of a given flipflop is dependent on the states of other flipflops. • In other words the flipflops are not triggered by simultanous clock pulses but the transitions in other flipflops.
  • 9. Asynchronous Counters • This counter is called asynchronous because not all flip flops are have the same clock. • Look at the waveform of the output, Q, in the timing diagram. It resembles a clock as well. • This provides a clock that runs twice as slow. If we feed the clock into a T flip flop, where T is hardwired to 1. The output will be a clock who's period is twice as long.
  • 10. Two-bit asynchronous counter • The external clock is connected to the clock input of the first flip-flop only. • So, it changes state at the negative edge of each clock pulse, but the next flipflop changes only when triggered by the negative edge of the Q output of the first one.
  • 11. Two-bit asynchronous counter • Because of the inherent propagation delay through a flip-flop, the transition of the input clock pulse and a transition of the Q output of FF0 can never occur at exactly the same time. • Therefore, the flip-flops cannot be triggered simultaneously, producing an asynchronous operation. • Eg : As shown, there is some small delay between the CLK, Q0 and Q1 transitions.
  • 12. Two-bit asynchronous counter • Usually, all the CLEAR inputs are connected together, so that a single pulse can clear all the flip-flops before counting starts. • The 2-bit ripple counter circuit above has four different states, each one corresponding to a count value. • Similarly, a counter with n flip-flops can have 2N states. • The number of states in a counter is known as its mod (modulo) number.
  • 13. Two-bit asynchronous counter • Thus a 2-bit counter is a mod-4 counter. • This is because the most significant flip-flop produces one pulse for every n pulses at the clock input of the least significant flip-flop . .
  • 14. 3 bit asynchronous “ripple” counter using T flip flops • This is called as a ripple counter due to the way the FFs respond one after another in a kind of rippling effect.
  • 15. Synchronous Counters • To eliminate the "ripple" effects, use a common clock for each flip- flop and a combinational circuit to generate the next state. • For an up-counter, use an incrementer => D3 Q3 D2 Q2 D1 Q1 D0 Q0 Clock Incre- menter A3 A2 A1 A0 S3 S2 S1 S0
  • 16. Synchronous Counters • To eliminate the "ripple" effects, use a common clock for each flip-flop and a combinational circuit to generate the next state. • Hence the counters in which all the flipflops are provided with a clock pulse simultanously are called the Synchronous counters. • Synchronous counters may be of the following types – Up counter – Down counter
  • 17. • Internal details => • Internal Logic – XOR complements each bit – AND chain causes complement of a bit if all bits toward LSB from it equal 1 • Count Enable – Forces all outputs of AND chain to 0 to “hold” the state • Carry Out – Added as part of incrementer – Connect to Count Enable of additional 4-bit counters to form larger counters Synchronous Counters (continued) Incrementer
  • 18. Design Example: Synchronous BCD • Use the sequential logic model to design a synchronous BCD counter with D flip-flops • State Table => • Input combinations 1010 through 1111 are don’t cares Current State Q8 Q4 Q2 Q1 Next State Q8 Q4 Q2 Q1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 1 0 1 1 0 0 1 1 0 0 1 1 1 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0
  • 19. Synchronous BCD (continued) • Use K-Maps to two-level optimize the next state equations and manipulate into forms containing XOR gates: D1 = Q1’ • D2 = Q2 + Q1Q8’ D4 = Q4 + Q1Q2 D8 = Q8 + (Q1Q8 + Q1Q2Q4) • Y = Q1Q8 • The logic diagram can be drawn from these equations – An asynchronous or synchronous reset should be added
  • 20. Synchronous BCD (continued) • There are chances that counter is perturbed by a power disturbance or other interference and it enters a state other than 0000 through 1001. • Find the actual values of the six next states for the don’t care combinations from the equations • Find the overall state diagram to assess behavior for the don’t care states (states in decimal) . Present State Next State Q8 Q4 Q2 Q1 Q8 Q4 Q2 Q1 1 0 1 0 1 0 1 1 1 0 1 1 0 1 1 0 1 1 0 0 1 1 0 1 1 1 0 1 0 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 0 0 1 0
  • 21. Unused states • The examples shown so far have all had 2n states, and used n flip-flops. But sometimes you may have unused, leftover states. • For example, here is a state table and diagram for a counter that repeatedly counts from 0 (000) to 5 (101). • But there are also the unused states in the state table. . Present State Next State Q2 Q1 Q0 Q2 Q1 Q0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 1 0 1 1 1 0 0 1 0 0 1 0 1 1 0 1 0 0 0 1 1 0 ? ? ? 1 1 1 ? ? ? 001 010 011 100 101 000
  • 22. Unused states can be don’t cares… • To get the simplest possible circuit, one can fill in don’t cares for the next states. This will also result in don’t cares for the flip-flop inputs, which can simplify the hardware. • If the circuit somehow ends up in one of the unused states (110 or 111), its behavior will depend on exactly what the don’t cares were filled in with. . Present State Next State Q2 Q1 Q0 Q2 Q1 Q0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 1 0 1 1 1 0 0 1 0 0 1 0 1 1 0 1 0 0 0 1 1 0 x x x 1 1 1 x x x 001 010 011 100 101 000
  • 23. Other possibility • To get the safest possible circuit, you can explicitly fill in next states for the unused states 110 and 111. • This guarantees that even if the circuit somehow enters an unused state, it will eventually end up in a valid state. • This is called a self- starting counter. .Present State Next State Q2 Q1 Q0 Q2 Q1 Q0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 1 0 1 1 1 0 0 1 0 0 1 0 1 1 0 1 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 001 010 011 100 101 000 111110
  • 24. Ring counters are implemented as shown where output of a flipflop is given as an input to the next flipflop except the last one. Here the normal output of the last flipflop is connected back to the input of the first one. Hence it is called Ring counter. Ring Counter
  • 25. Johnson Counter The Johnson counter, also known as the twisted-ring counter, is exactly the same as the ring counter except that the inverted output of the last flip-flop is connected to the input of the first flip-flop. If it starts from 000, 100, 110, 111, 011 and 001, and the sequence is repeated so long as there is input pulse.