Forum Discussion
GBovi
New Contributor
6 years agoJTAG To Avalon Master Bridge sld node index or name set
When I instantiate the JTAGToAvalonMasterBridge, I need to choose the jtag index of this master. Because if I add another bridge I don't want the index of the existing ones changes. Another solution ...
EricMunYew_C_Intel
Frequent Contributor
6 years agoHi, Giorgio
You can get the list of all master services using get_service_paths in your System Console, and then assign a variable name to the first index of the list and so on.
set masters [get_service_paths master]
set master [lindex $masters 0]
open_service master $master
...
...
close_service master $master
Am I answering your question ?
Thanks.
Eric