smaz
Newbie level 5
- Joined
- Dec 31, 2007
- Messages
- 10
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,360
Hello
I have written a program in VHDL as given below. The pre-synthesis simulation works properly. but the circuit being inferred by DC as “/” is not working properly
and giving the incorrect answers even if the fL_hlp11 is Equal to 0.
ffrocess(clk,reset)
begin
if reset='1' then
fL_hlp111<=(others=>'0');
elsif rising_edge(clk) then
fL_hlp111<=fL_hlp11/3;
end if;
end process ff;
[/QUOTE]
for example you can see the simulation results as shown below.
I have written a program in VHDL as given below. The pre-synthesis simulation works properly. but the circuit being inferred by DC as “/” is not working properly
and giving the incorrect answers even if the fL_hlp11 is Equal to 0.
ffrocess(clk,reset)
begin
if reset='1' then
fL_hlp111<=(others=>'0');
elsif rising_edge(clk) then
fL_hlp111<=fL_hlp11/3;
end if;
end process ff;
[/QUOTE]
for example you can see the simulation results as shown below.