From 03a5f16d70e01b0f67a32ef4f4ec8e530799c8b6 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 12 Oct 2022 12:07:41 +0200 Subject: [PATCH] build/vhd2v_converter: Add list of things to check. --- litex/build/vhd2v_converter.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/litex/build/vhd2v_converter.py b/litex/build/vhd2v_converter.py index 6ff629c89..1074d5b41 100644 --- a/litex/build/vhd2v_converter.py +++ b/litex/build/vhd2v_converter.py @@ -9,12 +9,19 @@ import os from migen import * +# FIXME/CHECKME: +# -------------- +# - Ideally, sources should still be added to the platform (and not to VHD2VConverter). The sources +# for the conversion could probably be collected from the LiteX's Module during the finalize. +# - Check parameter names (ex: top_entity->top/top_level?, work_package->work_library?). +# - Check if adding instance will be useful. + # VHD2V Converter ---------------------------------------------------------------------------------- class VHD2VConverter(Module): """ - VHD2VConverter simplify use of VHDL code: used to convert with ghdl the code if - needed or simply pass list of files to platform. May also add an Instance. + VHD2VConverter simplify use of VHDL code: used to convert with ghdl the code if needed or simply + pass list of files to platform. May also add an Instance. Attributes ========== _top_entity: str