ToolSetup.Aldec

ToolSetup/Aldec/__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from typing import Dict

from pyTooling.Decorators import export

from .. import Vendor, Tool, ToolInstance


@export
class ActiveHDLInstance(ToolInstance):
	pass


@export
class RivieraPROInstance(ToolInstance):
	pass


@export
class ActiveHDL(Tool):
	_instanceClass = ActiveHDLInstance


@export
class RivieraPRO(Tool):
	_instanceClass = RivieraPROInstance


@export
class Aldec(Vendor):
	_toolClasses: Dict[str, Tool] = {
		"Active-HDL": ActiveHDL,
		"Riviera-PRO": RivieraPRO,
	}

	@property
	def ActiveHDL(self) -> ActiveHDL:
		return self.__getitem__("Active-HDL")

	@property
	def RivieraPRO(self) -> RivieraPRO:
		return self.__getitem__("Riviera-PRO")