Source code for hwtLib.xilinx.platform

from typing import Optional

from hwt.synthesizer.dummyPlatform import DummyPlatform


[docs]class XilinxVivadoPlatform(DummyPlatform):
[docs] def __init__(self, part: Optional[str]=None): self.part = part super(XilinxVivadoPlatform, self).__init__()