D
dcreddy1980
Guest
entity test is
port(X : in std_logic;
clk : in std_logic;
Y : out std_logic);
end test;
architecture behaviour of test is
signal tmp : integer :=3;
constant clock period : time := 2 ns;
begin
Y <= X after tmp * clock period; -- "X after 6 ns"
end behaviour;
can body give me some ideas in synthesizing the above code...especially i
want to remove the statement "X after tmp*clock period".
Regards,
chaitanya
port(X : in std_logic;
clk : in std_logic;
Y : out std_logic);
end test;
architecture behaviour of test is
signal tmp : integer :=3;
constant clock period : time := 2 ns;
begin
Y <= X after tmp * clock period; -- "X after 6 ns"
end behaviour;
can body give me some ideas in synthesizing the above code...especially i
want to remove the statement "X after tmp*clock period".
Regards,
chaitanya