In ModelSim you can use something like
in modelsim we can use init_signal_spy("../.../sig", mysignal);
to get deep hierarchy signals. Is there a way to get such signals with Cadence's NCVhdl?
This should be flagged "SimVision", which is the name the tool, but that flag does not seem to exist.
As one can see here, the function is called nc_mirror.
It takes a destination and a source and does just the same as init_signal_spy does for modelsim. The third parameter is optional. Additionally it supports mirroring arrays or records.
In this interesting answer a wrapper package is provided that converts the nc_mirror or init_spy_signal (and others) to a function "probe".
If Cadence tools support VHDL-2008, you can access signals, shared variables, or constants in other levels of your design via external names.
Direct usage is as follows.
Note that the object must be elaborated before the reference. Since VHDL designs are elaborated in order of instantiation later designs may reference into earlier ones.
Use an alias to create a local short hand name:
Path starts with: