Forum Discussion
Altera_Forum
Honored Contributor
15 years agoVHDL question
Hi all! According to std.standard: TYPE string IS ARRAY ( positive RANGE <> OF character); "hello" is a valid string litteral "" is a valid string litteral too, it is the empty stri...
Altera_Forum
Honored Contributor
15 years agoI dont think there is. Could you explain why you want to do it?
another less "clean" way - declare a pointer to foo. type foo_ptr_t is access foo; variable foo_ptr : foo_ptr_t; and then you can actually compare it to null: if foo_ptr = null then ...etc But that is getting rather extreme.