SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

Tendances

Tendances (20)

Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits
 
Latches and flip flop
Latches and flip flopLatches and flip flop
Latches and flip flop
 
Registers
RegistersRegisters
Registers
 
sequential circuits
sequential circuitssequential circuits
sequential circuits
 
Synchronous counters
Synchronous countersSynchronous counters
Synchronous counters
 
Synchronous Counter
Synchronous Counter Synchronous Counter
Synchronous Counter
 
Sequential circuits in Digital Electronics
Sequential circuits in Digital ElectronicsSequential circuits in Digital Electronics
Sequential circuits in Digital Electronics
 
Registers and counters
Registers and counters Registers and counters
Registers and counters
 
Multiplexers & Demultiplexers
Multiplexers & DemultiplexersMultiplexers & Demultiplexers
Multiplexers & Demultiplexers
 
Counters
CountersCounters
Counters
 
Latches and flip flops
Latches and flip flopsLatches and flip flops
Latches and flip flops
 
Flipflop
FlipflopFlipflop
Flipflop
 
Design half ,full Adder and Subtractor
Design half ,full Adder and SubtractorDesign half ,full Adder and Subtractor
Design half ,full Adder and Subtractor
 
Parity Generator and Parity Checker
Parity Generator and Parity CheckerParity Generator and Parity Checker
Parity Generator and Parity Checker
 
Chapter 6 register
Chapter 6 registerChapter 6 register
Chapter 6 register
 
Sequential Logic Circuit
Sequential Logic CircuitSequential Logic Circuit
Sequential Logic Circuit
 
latches
 latches latches
latches
 
What are Flip Flops and Its types.
What are Flip Flops and Its types.What are Flip Flops and Its types.
What are Flip Flops and Its types.
 
Counters
Counters Counters
Counters
 
MULTIPLEXER
MULTIPLEXERMULTIPLEXER
MULTIPLEXER
 

Similaire à Counters

Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Asif Iqbal
 
Chapter 7_Counters (EEEg4302).pdf
Chapter 7_Counters (EEEg4302).pdfChapter 7_Counters (EEEg4302).pdf
Chapter 7_Counters (EEEg4302).pdfTamiratDejene1
 
Computer system architecture 16 counters
Computer system architecture 16 countersComputer system architecture 16 counters
Computer system architecture 16 countersthearticlenow
 
Digital Counter Design
 Digital Counter Design Digital Counter Design
Digital Counter DesignGargiKhanna1
 
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).pptxAniruddh70
 
Counter with memes
Counter with memesCounter with memes
Counter with memesLee Diaz
 
Counter with memes
Counter with memesCounter with memes
Counter with memesLee Diaz
 
Synchronous down counter
Synchronous down counterSynchronous down counter
Synchronous down counterRONAK SUTARIYA
 
COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)Sairam Adithya
 
COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)COUNTERS(Synchronous & Asynchronous)
COUNTERS(Synchronous & Asynchronous)SUBHA SHREE
 

Similaire à 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)
 

Dernier

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.pptxDenish Jangid
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
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.pptxJisc
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
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.christianmathematics
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
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.pptxDr. Sarita Anand
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
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 17Celine George
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
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.pdfPoh-Sun Goh
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 

Dernier (20)

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
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
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
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
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.
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
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
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
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
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.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
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 

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.