On Wed, Oct 15, 2008 at 10:06:24PM +0200, [EMAIL PROTECTED] wrote: > In the example below, 3 of the 4 "instanceVector: should be uninitialized, > but they are all uninitialized.
In fact there is a bug in ghdl and in your design: > -- Here if the cast is removed, > -- error is issued while trying to run ghdl with the -a option : > -- test.vhdl:xyz:7: no interface for 'theoutput' in association > theOutput => std_logic_vector(instanceMatrix(1))); Because the mode is out, you should write: myVector (theOutput) => instanceMatrix(1))); Ghdl doesn't catch this error. Tristan. _______________________________________________ Ghdl-discuss mailing list [email protected] https://mail.gna.org/listinfo/ghdl-discuss
