![]() |
|
|
|
#1 |
|
consider the following functions:
function get_i return integer is begin return 10; end function get_i; function get_i return boolean is begin return true; end function get_i; they both have the same name but different return types. are these going to be safe in something like this statement across most, if not all simulators? echo(integer'image(get_i) & " " & boolean'image(get_i) & LF); Am I creating a potentially confusing (for the simulator/synthesisor) situation? Tricky |
|
|
|
|
#2 |
|
Posts: n/a
|
Tricky wrote:
> Am I creating a potentially confusing (for the simulator/synthesisor) > situation? As long as the return types are different, the function IDs can be the same. -- Mike Treseler Mike Treseler |
|
|
|
#3 |
|
Posts: n/a
|
Tricky <> writes:
> consider the following functions: > > function get_i return integer is > begin > return 10; > end function get_i; > > function get_i return boolean is > begin > return true; > end function get_i; > I make lots of use of this in my simulations. For example, I have functions to decode data streams which can return several different types, depending on how much the data I'm interested in having returned to me. I've never tried it in synthesis though - it ought to work, but... well, let's say I'm a bit more pessimistic in my expectations of synth tools (although not as much as some are Cheers, Martin -- TRW Conekt - Consultancy in Engineering, Knowledge and Technology http://www.conekt.net/electronics.html Martin Thompson |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Portable DVD Player | John.P.McDevitt@gmail.com | DVD Video | 3 | 02-27-2006 12:34 AM |
| Which portable DVD players support all regions? | ANTant@zimage.com | DVD Video | 0 | 01-20-2005 06:05 AM |
| Good portable player? | Jordan Lund | DVD Video | 2 | 10-28-2004 02:49 AM |
| I Need a Multi Region Portable DVD Player | Tim | DVD Video | 2 | 12-21-2003 09:58 AM |
| Portable w/ 4:3 screen - WTF! | Wade365 | DVD Video | 8 | 11-26-2003 01:17 AM |