Search code examples
syntaxvhdlfpgavirtex

what is syntax in ucf file for IOBDELAY for virtex 5?


# Sets the attributes to an input differential pin pair (din)
NET <din_p> LOC=<AE7> | IOSTANDARD=<LVDS_25> |IOBDELAY=<NONE/BOTH/IBUF/IFD> | DIFF_TERM=<TRUE>;
NET <din_n> LOC=<AF7> | IOSTANDARD=<LVDS_25> | IOBDELAY=<NONE/BOTH/IBUF/IFD> | DIFF_TERM=<TRUE>;

enter image description here

even when I give IOBDELAY=NONE, the error persists Could someone tell me where I am going wrong ? This syntax was taken from Language templates for IBUFDS


Solution

  • yea it had to do with syntax .
    NET "din_p" LOC="AG6" | IOSTANDARD="LVDS_25" | IOBDELAY=NONE | DIFF_TERM=TRUE;

    it works this way