davorin
Advanced Member level 3
- Joined
- Jun 7, 2003
- Messages
- 901
- Helped
- 11
- Reputation
- 22
- Reaction score
- 4
- Trophy points
- 1,298
- Location
- Switzerland
- Activity points
- 7,349
VHDL entities in Quartus
Although I hate VHDL I have to use it from time to time (o;
And now I´m facing a strange problem with a altpll entity added in the top-level file.
It correctly sees the altpll module but later on it says that it is un defined:
The top-level code looks like:
I know it must be something stupid...and I hate those stupid VHDL which requires the right order of files imported into Quartus *arrgggghh.
Although I hate VHDL I have to use it from time to time (o;
And now I´m facing a strange problem with a altpll entity added in the top-level file.
Code:
Info: Found 2 design units, including 1 entities, in source file clkpll.vhd
Info: Found design unit 1: CLKPLL-SYN
Info: Found entity 1: CLKPLL
It correctly sees the altpll module but later on it says that it is un defined:
Code:
Error: VHDL error at usbtop.vhd(353): object "CLKPLL" is used but not declared
Error: Ignored construct USBTOP_arch at usbtop.vhd(35) because of previous errors
The top-level code looks like:
Code:
u_PLL : CLKPLL
port map (inclk0 => CLKINM,
pllena => '1',
areset => RST,
c1 => GCLKM,
c0 => CLKM,
locked => LOCK);
I know it must be something stupid...and I hate those stupid VHDL which requires the right order of files imported into Quartus *arrgggghh.