nakshathra
Junior Member level 1
- Joined
- Sep 4, 2013
- Messages
- 19
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 134
the following code results the below error on synthesis:
ERROR:Xst:827 - "C:/Documents and Settings/Administrator/Desktop/xilinx prgms/sqr/sqr.vhd" line 65: Signal clkout cannot be synthesized, bad synchronous description. The description style you are using to describe a synchronous element (register, memory, etc.) is not supported in the current software release.
Please resolve the error.
ERROR:Xst:827 - "C:/Documents and Settings/Administrator/Desktop/xilinx prgms/sqr/sqr.vhd" line 65: Signal clkout cannot be synthesized, bad synchronous description. The description style you are using to describe a synchronous element (register, memory, etc.) is not supported in the current software release.
Please resolve the error.
Code:
process(reset,clk_count(25))
begin
if reset='1' then
count<=x"0000";
clkout<='0';
elsif (clk_count(25)='1' and clk_count(25)'event) then
count<=count+'1';
clkout<='1';
else clkout<='0';
end if;
end process;