Forum Discussion
BDura1
New Contributor
7 years agoIssue with LEDR0 on DE10 Lite boards
Hi everybody, I have a problem with the KEYs and LEDR 0 of the DE10 Lite. My program is quite simple : (see below) I import the QSF file before compilation. After downloading the SOF file, the bo...
BDura1
New Contributor
7 years agoI forgot to include the program; Apologies!
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.all;
Entity et_ou is PORT(
KEY : IN std_logic_vector(1 downto 0);
LEDR : OUT std_logic_vector(3 downto 0));
End et_ou;
Architecture equations of et_ou is
Begin
LEDR(0) <= KEY(1) and KEY(0);
End equations;