blob: b98cc2698af9a1ba8149e22967c56ed56bc3e703 (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
digraph TypeHierarchy {
graph [rankdir=BT bgcolor="transparent"]
{ node [style=filled,shape=box]
{ node [fillcolor="#f7fbff"]
Data
Element
Bits Num
Aggregate
VecLike
"Chisel Internal"
}
{ node [fillcolor="#e5f5e0"]
Bool UInt SInt
FixedPoint Interval
Analog
Clock
Reset
AsyncReset
Record
Bundle
Vec
"Chisel Types"
}
{ node [fillcolor="#fcbba1"]
"User Types"
Ellipsis [label="..."]
}
subgraph cluster_data_hierarchy {
color=transparent
Element
Bits Num
Reset Clock Analog
UInt SInt FixedPoint Interval
Bool
color=transparent
Aggregate
VecLike
Record
Bundle
Vec
{Aggregate Element} -> Data
{Bits Reset Clock Analog} -> Element
{UInt SInt FixedPoint Interval} -> {Bits Num}
Bool -> {UInt Reset}
Ellipsis -> Bundle
Ellipsis -> Record -> Aggregate
Bundle -> Record
Vec -> {Aggregate VecLike}
AsyncReset -> {Element Reset}
}
subgraph cluster_legend {
label=Legend
"User Types" -> "Chisel Types" -> "Chisel Internal"
}
}
}
|