A
ALuPin
Guest
Hi VHDL folks,
I want to display some comments on the wave window of Modelsim.
In my VHDL testbench I have the following signal assignments.
At the locations with *** I would like to see some comment
in the simulation wave.
Does somebody know how to realize that?
process
begin
t_store_ack_gmii <= '0';
t_ack_address <= (others => '0');
t_data_address_device <= (others => '0');
t_take_data_address <= '0';
t_in_rep_error <= '0';
*** comment 1
wait_delay; -- delay procedure
t_store_ack_gmii <= '1';
t_ack_address <= "10101010101";
wait until rising_edge(t_clk);
t_store_ack_gmii <= '0';
*** comment 2
wait_delay;
t_store_ack_gmii <= '1';
t_ack_address <= "10100000101";
wait until rising_edge(t_clk);
t_store_ack_gmii <= '0';
*** comment 3
wait;
end process:
Thank you for your help.
Kind Rgds
I want to display some comments on the wave window of Modelsim.
In my VHDL testbench I have the following signal assignments.
At the locations with *** I would like to see some comment
in the simulation wave.
Does somebody know how to realize that?
process
begin
t_store_ack_gmii <= '0';
t_ack_address <= (others => '0');
t_data_address_device <= (others => '0');
t_take_data_address <= '0';
t_in_rep_error <= '0';
*** comment 1
wait_delay; -- delay procedure
t_store_ack_gmii <= '1';
t_ack_address <= "10101010101";
wait until rising_edge(t_clk);
t_store_ack_gmii <= '0';
*** comment 2
wait_delay;
t_store_ack_gmii <= '1';
t_ack_address <= "10100000101";
wait until rising_edge(t_clk);
t_store_ack_gmii <= '0';
*** comment 3
wait;
end process:
Thank you for your help.
Kind Rgds