![]() |
|
|
|
#1 |
|
I have made my own type and defined a signal of my tipe:
type my_type is (zero, first, sec, third, fourth); SIGNAL floor : my_type; and when I Save and check..., I get the message that says: floor is multiply driven (or smthn like that). What does it mean? I tried writing SIGNAL floor : resolved my_type; but than says "can't find resolver smthn...". What should I do? Please help! Thank you. jozo |
|
|
|
|
#2 |
|
Posts: n/a
|
jozo wrote:
> I have made my own type and defined a signal of my tipe: > > type my_type is (zero, first, sec, third, fourth); > SIGNAL floor : my_type; > > and when I Save and check..., I get the message that says: > floor is multiply driven (or smthn like that). Your write to signal floor from multiplie processes - e.g.: process(...) begin if rising_edge(...) then floor<= .... end if; end process; floor<= .... process(....) begin if (...) then floor<=... end if; end process; Don't do this (except you want to design a tri-state multiplexer). Write to a signal only from one process. Ralf Ralf Hildebrandt |
|
![]() |
| Thread Tools | Search this Thread |
|
|
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 |
| Need help on Modelsim VHDL syntax? ASAP:) | kaji | General Help Related Topics | 0 | 03-14-2007 10:43 PM |
| Need help on a Modelsim VHDL Syntax? ASAP:) | kaji | Software | 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 |