H
hssig
Guest
How can I delay a signal in the following manner ?
signal clk : std_logic;
signal sig : std_logic;
process
begin
clk <= '1'; wait for 10 ns;
clk <= '0'; wait for 10 ns;
end process;
Now I want "sig" to be High for 50us, after that it should be assigned
the value of clk.
The following approach does not work:
sig <= '1', clk after 50 us;
Cheers, hssig
signal clk : std_logic;
signal sig : std_logic;
process
begin
clk <= '1'; wait for 10 ns;
clk <= '0'; wait for 10 ns;
end process;
Now I want "sig" to be High for 50us, after that it should be assigned
the value of clk.
The following approach does not work:
sig <= '1', clk after 50 us;
Cheers, hssig