XCO files should be handled by ISE, not only by Vivado and PlanAhead.

parent bc1e6796
...@@ -31,7 +31,7 @@ from .make_syn import ToolSyn ...@@ -31,7 +31,7 @@ from .make_syn import ToolSyn
from hdlmake.util import shell from hdlmake.util import shell
from hdlmake.srcfile import (VHDLFile, VerilogFile, SVFile, from hdlmake.srcfile import (VHDLFile, VerilogFile, SVFile,
UCFFile, CDCFile, NGCFile, BMMFile) UCFFile, CDCFile, NGCFile, BMMFile, XCOFile)
FAMILY_NAMES = { FAMILY_NAMES = {
"XC6S": "Spartan6", "XC6S": "Spartan6",
...@@ -66,7 +66,8 @@ class ToolISE(ToolSyn): ...@@ -66,7 +66,8 @@ class ToolISE(ToolSyn):
UCFFile: 'xfile add $(sourcefile)', UCFFile: 'xfile add $(sourcefile)',
CDCFile: 'xfile add $(sourcefile)', CDCFile: 'xfile add $(sourcefile)',
BMMFile: 'xfile add $(sourcefile)', BMMFile: 'xfile add $(sourcefile)',
NGCFile: 'xfile add $(sourcefile)'} NGCFile: 'xfile add $(sourcefile)',
XCOFile: 'xfile add $(sourcefile)'}
HDL_FILES = { HDL_FILES = {
VHDLFile: 'xfile add $(sourcefile)', VHDLFile: 'xfile add $(sourcefile)',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment