haammzzaa
Newbie level 2
Hello everyone,
I am an electrical engineer student and now I'm in an internship. I'm working with jaspergold and I need to delay a signal for a portion of the clock cycle (half cycle or less or more) but I am blocked .
Here is one of the ways I tried :
assign #0.5 ack_d = ack
I also tried :
always @(posedge clk) ack_d <= #0.5 ack;
I used also #2 and #3 but always it is delayed by only one cycle.
Can anyone help me please?
Thank you in advance.
I am an electrical engineer student and now I'm in an internship. I'm working with jaspergold and I need to delay a signal for a portion of the clock cycle (half cycle or less or more) but I am blocked .
Here is one of the ways I tried :
assign #0.5 ack_d = ack
I also tried :
always @(posedge clk) ack_d <= #0.5 ack;
I used also #2 and #3 but always it is delayed by only one cycle.
Can anyone help me please?
Thank you in advance.
Last edited by a moderator: