LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cores > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: Guy Hutchison<ghutchis@g...>
    Date: Tue Jun 21 18:40:50 CEST 2005
    Subject: [oc] hdl designer xilinx flow with verilog
    Top
    Short version: Don't use ISE to compile your files

    ISE requires all include files to be correct relative to where you
    started it from. So you would need to change every include to:
    `include "my/relative/path/include.vh"

    Theoretically there's an +incdir type directive so you don't have to
    do that, but it's simpler to just create a command-line script and use
    XST from the command line.

    xst -ifn compile.scr

    compile.scr:
    run -ifn compile.list -ofn my_design.ngc -top my_design_top
    -keep_hierarchy Yes -ofmt NGC -uc my_constraints.xcf -p xc2VP7-FF672-6
    -opt_mode Speed -opt_level 2

    - Guy

    ReferenceAuthor
    [oc] hdl designer xilinx flow with verilogForyst

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.