Friday, September 29, 2006

VHDL Code for an infinite Process

library IEEE;
use ieee.std_logic_1164.all;

PROCESS
BEGIN
x <= ‘0’, a AFTER 10 ns, b AFTER 35 ns;
y <= a AND b AFTER 15 ns;
END PROCESS;

0 Comments:

Post a Comment

<< Home