From 3e23ad3cffe5b64bc9e769307dbf9850ea3a9c32 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 13 Oct 2022 09:12:58 +0200 Subject: [PATCH] build/vhd2v_converter: Fix add_sources (to make it similar to platform.add_sources). --- litex/build/vhd2v_converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/build/vhd2v_converter.py b/litex/build/vhd2v_converter.py index e4f0557a4..05cb1e792 100644 --- a/litex/build/vhd2v_converter.py +++ b/litex/build/vhd2v_converter.py @@ -77,7 +77,7 @@ class VHD2VConverter(Module): """ self._sources.append(filename) - def add_sources(self, path, filenames): + def add_sources(self, path, *filenames): """ append the source list with a list of file after adding path Parameters