F
fl
Guest
Hi,
I use Xilinx ISE to run a small VHDL file. From Xilinx ISE goes to Modelsim in behaviour simulation (use the default do {hcic_tb.fdo} command), I find that thw waveform window does not display the following two signals:
SIGNAL filter_out_addr : std_logic; -- boolean
SIGNAL filter_out_done : std_logic; -- boolean
while
SIGNAL filter_out_rdenb : std_logic; -- boolean
shows in the waveform window. What is the reason for display or not?
Thanks
.............
testbench file:
SIGNAL filter_out_rdenb : std_logic; -- boolean
SIGNAL filter_out_addr : std_logic; -- boolean
SIGNAL filter_out_done : std_logic; -- boolean
la: filter_out_rdenb <= ce_out;
filter_out_procedure (
clk => clk,
reset => reset,
rdenb => filter_out_rdenb,
addr => filter_out_addr,
done => filter_out_done);
I use Xilinx ISE to run a small VHDL file. From Xilinx ISE goes to Modelsim in behaviour simulation (use the default do {hcic_tb.fdo} command), I find that thw waveform window does not display the following two signals:
SIGNAL filter_out_addr : std_logic; -- boolean
SIGNAL filter_out_done : std_logic; -- boolean
while
SIGNAL filter_out_rdenb : std_logic; -- boolean
shows in the waveform window. What is the reason for display or not?
Thanks
.............
testbench file:
SIGNAL filter_out_rdenb : std_logic; -- boolean
SIGNAL filter_out_addr : std_logic; -- boolean
SIGNAL filter_out_done : std_logic; -- boolean
la: filter_out_rdenb <= ce_out;
filter_out_procedure (
clk => clk,
reset => reset,
rdenb => filter_out_rdenb,
addr => filter_out_addr,
done => filter_out_done);