- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Platform Designer Version
Sometimes it would be useful to have a tcl command to request the Platform Designer Version. I'd like to use in the fileset callback to be able to add version depended IP files.
I'd like to have the same feature for the elaboration callback as well.
Full name of the module
Sometimes I'd like to have the possibility to get the full name of the module in the elaboration callback.
I know it is possible in the fileset callback when it dynamically generate different version of the same module. (For every instance a dedicated name).
As the elaboration callback is executet for every instance I'd like the get the full instance name there as well.
Thank you.
Kind regards,
Erich
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi KTan9!
Here my "pseudo code" as those commands do not exists:
Plattform designer Version:
proc fileset_callback { entityName } {
set platform_version [ get_platformdesigner_version ]
if {$platform_version == "13.1"} {
add_fileset_file ip_file_a.v SYSTEM_VERILOG PATH ip_file_a.v
} elseif {$platform_version == "18.1"} {
add_fileset_file ip_file_b.v SYSTEM_VERILOG PATH ip_file_b.v
}
}
Full name of the module:
proc elaborate { entityName } {
do something with the name
#name should be the full name with all the hierarchies and the name of the instance of the module
}
Regards,
Erich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi KTan9
Thank you!
Regards,
Erich

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page