Altera_Forum
Honored Contributor
18 years agoViewing signal lines beside ports during simulation
Hello!
I would like to be able to see during a functional simulation signals declared in an architecture. Up to now, I can only see the ports declared in the entity but not the signals declared in an architecture even after having iinserted them in the signals assigment list. Because of that, I have to make my simulations with another software. I would lie to be able to see all signals types and not only entity-ports on the signal viewing graph. Taking the following snipet below, I would like also to be able to view sig_a and sig_b signals declared in the architecture; but I'm not able to vieuw those signals even I've inserted them. Could you please show me how to do that with Quartus 2 version 6.1? Regards, library ieee; use ieee.std_logic_1164.all; entity any is port( x : in std_logic; y : out std_logic ); end any; architecture any_arch of any is signal sig_a, sig_b : std_logic; begin end any_arch;