Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Electronic Equipment > VHDL > Re: can I have ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 5 Topic 6110 of 6417
Post > Topic >>

Re: can I have unconstrained String as record element?

by Andrew <sharpa17@[EMAIL PROTECTED] > Jun 25, 2008 at 04:50 AM

On Jun 24, 7:07=A0pm, Reuven <rpaley...@[EMAIL PROTECTED]
> wrote:
> On Jun 24, 1:27=A0pm, Andrew <sharp...@[EMAIL PROTECTED]
> wrote:
>
>
>
> > On Jun 24, 11:48=A0am, Tricky <Trickyh...@[EMAIL PROTECTED]
> wrote:
>
> > > Can I do what I asked, I suspect not, so Im thinking along the
lines:
>
> > > type my_record_type is
> > > =A0 record
> > > =A0 =A0 name =A0 =A0: string(1 to 20);
> > > =A0 =A0 ....
> > > =A0 end record my_record;
>
> > > Basically, I want to be able to give the record name a constant
strin=
g
> > > when it is delcared like:
>
> > > CONSTANT my_record : my_record_type :=3D ( name =3D> "Betty
Swollocks=
",
> > > --length only 15, complains unless I pad to 20 chars.
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
=
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
...=
.....)
>
> > > Or am I just going to have to pad the name with whitespace to make
it
> > > up to name'length?
>
> > If you want variable length strings you can use an access type to
> > define a string pointer.
>
> > eg: type string_ptr is access string;
>
> > Your record would look something like this:
>
> > type my_record_type is
> > =A0 record
> > =A0 =A0 name =A0 =A0: string_ptr;
> > =A0 =A0 ....
> > =A0 end record my_record;
>
> > To set the string you use the "new" keyword to allocate memory.
>
> > my_record.name <=3D new string'("Betty Swollocks");
>
> > When you are done using my_record.name, you deallocate the memory
> > using the deallocate procedure.
>
> > Read up on access types.- Hide quoted text -
>
> > - Show quoted text -
>
> Can a record containing access types be an entity ****t?

I don't think so...  Signals and constants can't be declared as access
types.  Access types are not synthesizable but they are incredibly
useful for testbenches.
 




 5 Posts in Topic:
can I have unconstrained String as record element?
Tricky <Trickyhead@[EM  2008-06-24 08:48:06 
Re: can I have unconstrained String as record element?
KJ <kkjennings@[EMAIL   2008-06-24 09:02:24 
Re: can I have unconstrained String as record element?
Andrew <sharpa17@[EMAI  2008-06-24 13:27:07 
Re: can I have unconstrained String as record element?
Reuven <rpaley000@[EMA  2008-06-24 16:07:39 
Re: can I have unconstrained String as record element?
Andrew <sharpa17@[EMAI  2008-06-25 04:50:41 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Mon Dec 1 15:44:32 CST 2008.