I have some packages that live outside the top level testbench that drive some interfaces. I am trying to figure out how to add these signals into the waveform window. In Simvision, I can see all my packages and the signals from them, but they are in italics and say 'not probed':
How does one make these signals probed? Is there a file somewhere that tells the simulator what signals are probed? The simulation is run through a makefile script, here is a snippet from it. I tried adding the line that starts with 'probe' but I dont really know what I'm doing and this did not work:
if[!-d $(SIM_OUTPUT_DIR)]; then mkdir $(SIM_OUTPUT_DIR); fi; \ cd $(SIM_OUTPUT_DIR); \ find . -type f -maxdepth 1-delete; \ echo "Curent folder: "; pwd; \ irun -v200x -makelib rcf_lib ../../$(XSC_IP_DIR)/xsc_q7_neptec_ddvs_ntsc_ctrl_axi/src/hdl/constants_pkg.vhd -endlib \ -dumpstack -reflib xil_defaultlib $(IRUN_FILES) $(IRUN_SIM_OPT) $(IRUN_SIM_DEFINE_TC) $(IRUN_SIM_DEFINE_OPT) $(IRUN_CODE_COVERAGE_OPTIONS)-top $(TOP_LEVEL)-top glbl -logfile sim_log.log; \ probe -create -database waves::worklib.cpc_tools_pkg::cpc_tools -all -depth all
I may not have provided enough info to answer the quesiton, if so let me know what info is missing and I will try to answer it. Thanks in advance.