Skip to content

Commit a082397

Browse files
committed
vivado: enable reading xci files
Signed-off-by: Wojciech Tatarski <[email protected]>
1 parent cb59d75 commit a082397

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

toolchains/vivado.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,13 @@ def run(self):
9696
'file_type': 'verilogSource'
9797
}
9898
)
99+
elif f.endswith(".xci"):
100+
self.files.append(
101+
{
102+
'name': os.path.realpath(f),
103+
'file_type': 'xci'
104+
}
105+
)
99106

100107
self.files.append(
101108
{

0 commit comments

Comments
 (0)