Forum Discussion
U16 is the schematic reference for the FPGA in the board schematics for the dev kit. T19 is the pin on the FPGA itself.
You may want to show your design and how you have connected to the board. Presumably you are using the on-board USB Blaster. Is the device/board appearing correctly in the Quartus Programmer?
- Gerstensaft11 months ago
New Contributor
Yes, I use the USB-Blaster driver. And yes the FPGA is listed as soon as it's powered on. But I don't know how to assign the pins properly.
This is my vhdl code:
LIBRARY ieee;
USE ieee.std_logic_1164.all;
ENTITY light IS
PORT(x1, x2 : IN STD_LOGIC;
f : OUT STD_LOGIC);
END light;
ARCHITECTURE LogicFunction OF light IS
BEGIN
f <= (x1 AND NOT x2) OR (NOT x1 AND x2) ;
END LogicFunction ;The only asset in this post shows my **bleep**ty pin assignment. Pls send help...