Altera_Forum
Honored Contributor
11 years agoMissing output at node finder
HI guys.
My output node is missing when I tried to make functional simulation. Could somebody help me please. Only input port appear. Here is my coding. Is it related with coding? library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity counter4bit is port( Clock: in std_logic; Reset: in std_logic; Addr: out std_logic_vector(3 to 0)); end counter4bit; architecture Behavioral of counter4bit is signal count:std_logic_vector (3 downto 0); begin process(Clock,Reset,count) begin if Reset='1' then count <="0000"; elsif rising_edge (clock) then count <= count + '1'; end if; end process; Addr <= count; end Behavioral;