Altera_Forum
Honored Contributor
12 years ago/RESET signal in VHDL
Hi to all
In order to use VHDL Z80 and external VDP I need to build a /RESET signal. I've tried this code : --- Quote Start --- library ieee;use ieee.std_logic_1164.all; entity TB_RST is port ( RESET_N : out std_logic ); end TB_RST; architecture BIDULE of TB_RST is begin RESET_N <= '0', '1' after 10 ns, '0' after 30 ns; end BIDULE; --- Quote End --- The problem is that : when I compile with /RESET as input pin all is good but if I use this code the compiler show 0% like reset_n never change state