Hello,
I want to generate a pulse when the state of the pin FCTRL_VLD_L of my virtex xcv1000 FPGA changes from high to low.
I tried:
pulse : process
begin
wait until fctrl_vld_l'event and fctrl_vld_l='0';
pulsesignal <= '1', '0' after 100 ns;
end process;
This code synthetize, but when i load the desing on the FPGA, the signal pulsesignal remains '1' after the event.
Can anyone tell me how to generate this pulse signal?
regards,
alexis
I want to generate a pulse when the state of the pin FCTRL_VLD_L of my virtex xcv1000 FPGA changes from high to low.
I tried:
pulse : process
begin
wait until fctrl_vld_l'event and fctrl_vld_l='0';
pulsesignal <= '1', '0' after 100 ns;
end process;
This code synthetize, but when i load the desing on the FPGA, the signal pulsesignal remains '1' after the event.
Can anyone tell me how to generate this pulse signal?
regards,
alexis