Altera_Forum
Honored Contributor
11 years agoAssigning pins from schematic editor and VHDL in the same project
Hi,
A basic Quartus II question please .... I am just getting started with Quartus II, up untiil now, I have been using the schematc editor to create designs, then using the Pin assignment editor to put the I/O where I want it on the board. I want to add a VHDL file to the project and also manually assign the I/O. I have schematic file (.bdf) and a VHDL file (.vhd), these are currently at the same level in the Files hierarchy. I have tried assigning the pin as shown entity rom is port ( A15 : in std_logic ; A14 : in std_logic ; A13 : in std_logic ; romcs: out std_logic ) ; end rom ; architecture select of rom is attribute chip_pin : string; attribute chip_pin of A15 : signal is "G72"; begin romcs <= A13 and A14 and A15 ; end select ; The first question is that I am not sure of the actual pin name. The help file says "To find the name for each pin you want to assign to a port, consult the pin table for the design's target device." The device is an EPM7128S in a PLCC package, the datasheet does not give names (as far as I can see) for the pins, so I have tried just the pin number and also with it prefixed by the LAB. When I look in the pin-planner, the pin is still unassigned, so I am obviously doing something wrong. Can someone give me a couple of pointers please? Assuming that the code is correct (a big assumption) should I be able to see the pin assignment on the pin planner? regards Dave