Forum Discussion
Altera_Forum
Honored Contributor
16 years ago时序仿真的时候
添加信号要从node finder的对话框里面选取,直接指定节点名可能会找不到指定的节点。 Warning: Ignored node in vector source file. Can't find corresponding node name "clk" in design. clk根本就没有这个信号啊? 例: 激励名叫 CLK -》从node finder里指定节点为-》clk1 -》 编辑激励波形 -》仿真 我没有仔细研究过,有一下几点仅供参考: 确定找的到的: 输入 pin , 寄存器输出 确认找不到的: 综合时被优化掉的信号,比如: a<=b ;那你可能只能找到b,确找不到a; 或者 process(clk) if clk'event and clk='1' then b<=a; c<=a; end if; end process; 那可能只能找到b,找不到c。:eek: :eek: