build/vhd2v_converter: Add list of things to check.
This commit is contained in:
parent
00f29a3497
commit
03a5f16d70
|
@ -9,12 +9,19 @@ import os
|
||||||
|
|
||||||
from migen import *
|
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 ----------------------------------------------------------------------------------
|
# VHD2V Converter ----------------------------------------------------------------------------------
|
||||||
|
|
||||||
class VHD2VConverter(Module):
|
class VHD2VConverter(Module):
|
||||||
"""
|
"""
|
||||||
VHD2VConverter simplify use of VHDL code: used to convert with ghdl the code if
|
VHD2VConverter simplify use of VHDL code: used to convert with ghdl the code if needed or simply
|
||||||
needed or simply pass list of files to platform. May also add an Instance.
|
pass list of files to platform. May also add an Instance.
|
||||||
Attributes
|
Attributes
|
||||||
==========
|
==========
|
||||||
_top_entity: str
|
_top_entity: str
|
||||||
|
|
Loading…
Reference in New Issue