Continue to Site

[SOLVED] Multiple varying delays to signals in VHDL

arifboy

Newbie level 5
Newbie level 5
Joined
Mar 22, 2025
Messages
10
Helped
0
Reputation
0
Reaction score
1
Trophy points
1
Activity points
73
Missing CODE or SYNTAX tags [ Added by moderator ]
I am working on a VHDL code to insert multiple varying delays to signals. I have shown code below and expected waveforms and present waveforms respectively too. How can the code be changed to get desired waveforms?



Code VHDL - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
int := conv_integer(pc);
   
    wait until rising_edge(clk);
 
        if (int >= 0 and int <= 500) then  -- alu/j
            load_logic <= '0';
            store_logic <= '0';
            branch_logic <= '0';
            wait for 20 ns; alu_logic <= '1';    
            wait for 20 ns; alu_logic <= '0';
      
    
        elsif (int >= 504 and int <= 600) then --load
            alu_logic <= '0';
            store_logic <= '0';
            branch_logic <= '0';
            wait for 40 ns; load_logic <= '1';   
            wait for 20 ns; load_logic <= '0';
 
        elsif (int >= 604 and int <= 700) then -- store
            alu_logic <= '0';
            load_logic <= '0';
            branch_logic <= '0';
            wait for 60 ns; store_logic <= '1';
            wait for 20 ns; store_logic <= '0';   
 
        else --- br/j  
            alu_logic <= '0';
            load_logic <= '0';
            store_logic <= '0';
            wait for 80 ns; branch_logic <= '1';
            wait for 20 ns; branch_logic <= '0';        
 
        end if;



right.png
wrong.png
 
Last edited by a moderator:
Please show the screenshot.
One can change 40ns to 20ns, 60ns to 40ns and 80ns to 60ns for next 3 signals after first one, but this way although desired waveforms can be achieved, but code is not in harmony with the waveforms. Whatever my code says it should reflect on waveforms, so that reader knows, what will happen at output, just by reading it.
 

Attachments

  • extra_cycle.png
    extra_cycle.png
    58.2 KB · Views: 19
Give this a try.

Code VHDL - [expand]
1
2
3
4
5
6
7
8
9
...
elsif(int>=504 and int<=600) then
    alu_logic <= '0';
    store_logic <= '0';
    branch_logic <= '0';
    load_logic <= transport '1' after 40 ns, '0' after 60 ns;
    wait on pc;
elsif(int>=604 and int<=700) then
...

 
Last edited:
Give this a try.

Code VHDL - [expand]
1
2
3
4
5
6
7
8
9
...
elsif(int>=504 and int<=600) then
    alu_logic <= '0';
    store_logic <= '0';
    branch_logic <= '0';
    load_logic <= transport '1' after 40 ns, '0' after 60 ns;
    wait on pc;
elsif(int>=604 and int<=700) then
...

This is the problem "wait until rising_edge(clk);". I found a way to use 'rising_edge(clk)' with if block instead, and the extra cycle was gone. Thanks for your help.
 
This is the problem "wait until rising_edge(clk);". I found a way to use 'rising_edge(clk)' with if block instead, and the extra cycle was gone. Thanks for your help.
Great. I have not used "wait until rising_edge(clk);" before and I didn't think of even looking at it since it seemed like the clock was working. Altogether, it was a good engagement. Thank you.
 


Write your reply...

LaTeX Commands Quick-Menu:

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top