Asynchronous Sequential Circuits
Asynchronous Sequential Circuits
Circuits
Asynch. Seq. Ckt.
Asynchronous circuits don’t use
clock pulses
State transitions by changes in inputs
Clockless storage elements or
Delay elements (D Latch)
Normally much harder to design
2
Asynch. Sequential Circuit
x1 z1
x2 z2
inputs outputs
Combinational
xn zm
Circuit
y1 Y1
y2 Y2 Next
Current
State
State yk Yk (Excitation
(Secondary
Variables)
Variables)
delay
delay
delay
3
Properties of Asynch. Seq Circuit
yi = Yi in steady state (but may be
different during transition)
Simultaneous change in two (or
more) inputs is prohibited.
The time between two changes must
be less than the time of stability.
4
Advantages and Disadvantages
• Advantages:
Low power
High performance
No need for clock
• Disadvantages:
Complexity of design process
5
Analysis
y1
x Y1
y2
Y2
00 0 0 00 0 1 00 00 01
01 1 0 01 1 1 01 11 01
11 1 1 11 1 0 11 11 10
10 0 1 10 0 0 10 00 10
00 00 01
01 11 01
(Transition Table) Y1 Y2
11 11 10
10 00 10
At y1y2x = 000, if x: 0 1
then Y1Y2: 00 01
then y1y2 = 01 (2nd row): stable
8
Analysis
In general, if an input takes the circuit to
an unstable state, yi’s change until a
stable state is found.
x
y1 y2 0 1
00 00 01
General state of circuit:
01 11 01
y1y2x:
There are 4 stable states: 11 11 10
9
State Table
As synchronous:
next state
present
state X 0 X 1
00 00 01
01 11 01
10 00 10
11 11 10
10
Flow Table
The binary representation of a state in transition table with a letter
represents a Flow Table (with symbolic states):
x
0 1
11
Flow Table: Example 2
Two states, two inputs, one output.
x1 x2
00 01 11 10
a a ,0 a ,0 a ,0 b ,0
b a ,0 a ,0 b ,1 b ,0
b a ,0 a ,0 b ,1 b ,0 1 0 ,0 0 ,0 1 ,1 1 ,0
x1 x2 x1 x2
00 01 11 10 00 01 11 10
y y
0 0 0 0 1 0 0 0 0 0
1 0 0 1 1 1 0 0 1 0
z = x1x2y
x1
x2 Y
Y = x1x2’+x1y
14
Race Condition
If two (or more) state variables
change in response to a change in
an input, there is a race condition.
E.g. from 00 to 11, due to delays
00 01 11 OR
00 10 11.
• Critical Race:
If final steady state depends on the
order of changes in state vars.
15
Race: Examples
• Noncritical Cases:
x x
y1y2 0 1
y1y2 0 1
00 00 11 00 00 11
01 11 01 01
11 11 11 01
10 11 10 11
00 11 00 11 01
00 01 11 00 01
00 10 11 00 10 11 01
16
Race: Examples
• Critical Cases:
x x
y1y2 0 1
y1y2 0 1
00 00 11 00 00 11
01 11 01 01
11 11 11 11
10 10 10 10
00 11 00 11
00 01 11 00 01
00 10 00 10
17