Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to design a digital circuit to delay the negative edge of the input by 2 cycles?

Status
Not open for further replies.

jaseel_abdulla

Newbie level 4
Joined
Aug 13, 2007
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,326
How can we design a digital circuit to delay the negative edge of the input by 2 clock cycles
 

Re: Delay!! Help!

hey i think this circuit could be easily designed using a divide by four counter...its pretty simple if you know state machine design...are you going to implement it in HDL or a in circuit using discrete components...
 

Re: Delay!! Help!

Thanks

How can we implement using divide by 4 counter.

I
 

Delay!! Help!

hi jaseel_abdulla
Its true that we will required mod 4 counter.
in addition to that,to delay negative edge by 2 clock cycles, we must exor the outputs Q0 and Q1.
Q0 exor Q1 will give you the reqd waveform.
thanks
 

Re: Delay!! Help!

jaseel_abdulla said:
How can we design a digital circuit to delay the negative edge of the input by 2 clock cycles
If the positive edge shouldn't be delayed then use two D flipflops cascaded.
Use the given input as D input to the first flipflop and set inputs of both the flipflops

In this case it should be taken care than the input signal should not violate the minimum pulse width ....If it does then it may lead to metastability in the flipflops
 

Re: Delay!! Help!

Thanx
Can u please tell me how will this work..
 

Re: Delay!! Help!

If logic 1 comes, both the flipflops are set so the output comes out without any delay. When the logic goes to 0 the set is removed . So the logic zero is delayed by two clock cycles as it has to pass through two flipflop.
 

Re: Delay!! Help!

dear Gokulmuthu,
I guess you are not allowed to use this kind of circuitry in digital design, where you are affecting datapath by Async Set/resets. So I wont buy your idea/solution
Kr,
Avi
http://www.vlsiip.com
 

Re: Delay!! Help!

Dear Amit

If u know the answer plz share it.

Thanks in advance
 

Delay!! Help!

Hi Amit,
These type of circuit is allowded when passing signal from one clock domain to another clock domain ,and above circuit will work like above problem and as well like synchronous reset removal..
1st flop can go into metastable but second flop will work like synchronizer.
jaseel_abdulla you can design your problem using state machine like this(assumption :positive edge shouldn't be delayed )
Present state Next State, op
i/p=0 i/p =1
A A,0 B,1
B C,1 B,1
C D,1 B,1
D A,0 B,1

After solving Kmap you will get these expression (q1=>MSB,q0=>LSB)
D0 = i/p + q1q0_bar
D1=i/p_bar( q1 exor q0)
O/p = i/p + (q1 exor q0)

I think it may help you ...

Regards
 

Re: Delay!! Help!

Dear uditkumar1983,
With all respect, I would say that I dont agree with you on this occasion.
1.Where does clock domain corssing comes from? in this simple question
2.Say if we have to delay the -ive of the incoming signal by jsut one clock cycle then?
3. In normal digital design, these type of circuits are not recommended, if you feel 'allowed' it a bit strong here.
4. And I dont even understand where does 'sync reset removal' comes from in this simple problem.

Dear vlsi_freak, Yes I do know the answer, as it is my framed question which sombody picked up from:
http://www.vlsiip.com/misc/q.html

Best way is use a state machine. how? Well I wont say how, its up to you to make out.
Kr,
Avi
 

Delay!! Help!

Dear avimit,
I told above word because you was telling these types of circuit not allowded in digital design.and above circuit will work for sync reset removal when we are doing reset from other clock domain (I told these not related with question but related with that circuit features in multiple clock domain design). this type circuit is used in this paper also CummingsSNUG2002SJ_FIFO2.pdf.

Yes above type circuit will not work for if we have to delay the -ive of the incoming signal by jsut one clock cycle , for that purpose we required state machine design only ...

Regards
 

Re: Delay!! Help!

hi uditkumar1983,
In that case, pls accept my apologies.. Yes, OK, these kind of circuts are accepted in special cases as pointed out by uditkumar1983. But I wont accept them in the context of this question.
Kr,
Avi
http://www.vlsiip.com
 

Delay!! Help!

Dear avimit,
For this type of question surely state machine design is a better solution, there is no chances of any flop going into metastability.

But it was very nice for discussing it.

Regards
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top