library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity ledon is Port ( LED : out STD_LOGIC:='1'; BUTTON : in STD_LOGIC:='0'); end ledon; architecture Behavioral of ledon is begin LED <= BUTTON; end Behavioral;
library IEEE; use IEEE.std_logic_1164.all; library work; use work.Estructuras_de_Datos.all; entity Voltimetro is port ( clock: in std_logic; d : in std_logic; not_q: out std_logic; hs,vs: out std_logic; r,g,b: out std_logic ); ...