by KJ <kkjennings@[EMAIL PROTECTED]
>
Jun 23, 2008 at 05:31 AM
On Jun 23, 3:17=A0am, rahul.bajai...@[EMAIL PROTECTED]
wrote:
> hi all,
>
> i am new to VHDL. i am trying to calculate the string length that to
> taking that string from a file and then calculating its length.
> could anybody help me out.
>
> thanks in advance
Write the body for a function of the following form
function strlen(s: string) return natural is
begin
-- Put your code here
end function strlen;