Forum Discussion
Altera_Forum
Honored Contributor
16 years agolibrary IEEE;
use IEEE.std_logic_1164.all; Entity LED_light is port ( LED_out : out std_logic); end LED_light; architecture RTL of LED_light is begin LED_out<= '1'; end RTL;library IEEE;
use IEEE.std_logic_1164.all; Entity LED_light is port ( LED_out : out std_logic); end LED_light; architecture RTL of LED_light is begin LED_out<= '1'; end RTL;