Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

In an FPGA code, if I have something like the following:

(* LOC="M18" *)   output reg      lcd_e;

where lcd_e is an input/output port.

  1. Does this mean that I do not need to create a UCF file pointing lcd_e to M18?
  2. What does "(*" and "*)" indicate?
share|improve this question

1 Answer

up vote 3 down vote accepted
  1. Yes, this is another way to lock pins.
  2. It's a vendor-specific (Xilinx) way to lock pins. (* *) aren't standard
share|improve this answer
So, if a UCF file exists, which one overrides the other? – Neel Mehta May 16 '12 at 18:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.