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.
While writing hdl code you cannot specify time values and even if it simulates it is not synthesizable.
You can generate pulse fo 30 micro sec as
constant pulse_period : time := 30000 ns;
pulse <= 0;
pulse <= not pulse after 40000 ns;
pulse <= not pulse after time;
or you can use wait statements also
as
pulse <= 0;
wait for -----(specify time here);
pulse <= not pulse;
wait for pulse_period;
pulse <= not pulse;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.