Source code for hwt.mainBases
from typing import TypeVar, Generic, Union
from hwt.hdl.types.hdlType import HdlType
T = TypeVar("T", bound=HdlType)
HwModuleOrHwIOBase = Union[HwModuleBase, HwIOBase]
from typing import TypeVar, Generic, Union
from hwt.hdl.types.hdlType import HdlType
T = TypeVar("T", bound=HdlType)
HwModuleOrHwIOBase = Union[HwModuleBase, HwIOBase]