what is the advantage of edge triggered devices compared to
gated devices?
Answer Posted / isuru dhananjaya senevirathne
An edge triggered storage device responds to the data only during a
narrow time window surrounding the active clock edge. The width of the
window is specified by the setup and hold time specs of the device. A
gated device responds to the data during the entire time that
the clock is high (or low).
Designing with edge triggered devices is generally easier (that is their
main advantage) and they are less vulnerable to noise, but edge
triggered devices are more costly. Whereas you can build a
level-triggered storage element with a single latch you typically need
two latches, in a master-slave arrangement, to implement an
edge-triggered storage element.=20
Sometimes your design may not be able to afford the one clock period
delay that the edge triggered device introduces, and a level triggered
device may then be more appropriate.
Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
will you provide me NTPC exam?
i am going to visa second time i was rejected on 15-07-08 and on 14-08-08 i am attending visa again with another university.so what would be the good answer if they asks that why you have changed the university?
radar
what Rx and TX power good RF conditions.
What are the specifications of the scr ?
send me test pattern of nsn?
What is the output power of a BTS, in dbm &watts if trx=2+2+2... if trx=4+4+4..
What is soft & hard andover????
Define setup time?
What are the main components of AMF panel. Is it required to use ATS in LT panel if DG is used as stand by supply? Please send any single line diagram showing AMF & LT panel etc., if possible please send to sreenu_207 @ yahoo.co.in
what is resistive diode?
explain the principle of operation of successive approximation adc.
Explain the term doping and its need.
Which gates are called as universal gate and what are its advantages?
I am stuck up with a question on appending of two arrays
I am writing the code for the same, I am appending two
strings this way
int main()
{
string s1 = "Welcome to C++";
string s2 = "C++ improves the logic ability";
string s3 = s1 + s2;
cout<