Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - Signal zaehl cannot be synthesized

 
Thread Tools Search this Thread
Old 04-16-2007, 08:04 AM   #1
Default Signal zaehl cannot be synthesized


Hi Guys! I've got a problem with my vhdl code. I am very new at programming in this language and for this reason i am not be able to find the mistake. I tried hard without success. Signal zaehl cannot be synthesized, bad synchronous description. I hope somebody can help me. Furthermore, this project must be programmed at school.

ENTITY zaehler IS
PORT ( clock, zuendung, automatik : in std_logic;
katnr, rauf, runter ,sperr_ext :in bit;
leda, ledb, ledc, ledd, lede, ledf, ledg, dp, ledrauf, ledrunter, ledkatnr, transistor1, transistor2 ut bit);
END zaehler ;

ARCHITECTURE number_one OF zaehler IS

signal gang : std_logic_vector (2 downto 0);
signal zaehl : std_logic_vector (5 downto 0);-- badsynchronous description
signal zaehl_sperr : std_logic_vector (6 downto 0);
signal zaehl_auto : std_logic_vector (7 downto 0);
signal gang_alt : std_logic_vector (2 downto 0);

BEGIN

PROCESS (clock, zuendung, automatik, katnr, zaehl, zaehl_sperr, zaehl_auto, gang, gang_alt, rauf, runter, sperr_ext)
BEGIN
transistor1 <= '0';
transistor2 <= '1';
gang <= "001";
zaehl<= "000000";
zaehl_sperr <= "1010101";
zaehl_auto <= "00000000";


Reload6156
Reload6156 is offline   Reply With Quote
Old 04-17-2007, 04:03 PM   #2
martin.wahlstedt
Junior Member
 
Join Date: Mar 2007
Posts: 14
Default
Remove the signals zaehl, zaehl_sperr, zaehl_auto, gang & gang_alt from the sensitivity list and the problem should be solved. Put only signals that you want your process to trigger on, for instance clock and reset for a synchronous architecture, in the sensitivity list.

The reason you get the error on 'zaehl' is probably because it is the first one in the list.

Martin


martin.wahlstedt
martin.wahlstedt is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
I am having trouble editing a signal in a sub program. Haai Hardware 0 08-28-2007 02:58 PM
VHDL problem - Signal counter cannot be synthesized, bad synchronous description. shipacpoloy Software 0 08-14-2007 07:26 AM
Need help on Modelsim VHDL syntax? ASAP:) kaji General Help Related Topics 0 03-14-2007 10:43 PM
IMHO, Digital SECAM video is better than Analog NTSC video Radium DVD Video 167 10-25-2006 04:16 AM
Convert S-video to RF signal Monkey Monkey DVD Video 10 01-14-2004 08:17 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46