Skip to content

Commit 07b02b9

Browse files
committed
Make Pin a TypeVar and asssign power pins for OpenFrame
1 parent 87ee8a2 commit 07b02b9

File tree

3 files changed

+148
-93
lines changed

3 files changed

+148
-93
lines changed

chipflow_lib/platforms/_packages.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
from ._utils import QuadPackageDef, BareDiePackageDef, Package
1+
from ._utils import QuadPackageDef, BareDiePackageDef, GAPackageDef, Package
22
from ._openframe import OpenframePackageDef
33

44
# Add any new package types to both PACKAGE_DEFINITIONS and the PackageDef union
55
PACKAGE_DEFINITIONS = {
66
"pga144": QuadPackageDef(name="pga144", width=36, height=36),
77
"cf20": BareDiePackageDef(name="cf20", width=7, height=3),
8+
"bga144": GAPackageDef(name="bga144", width=36, height=36),
89
"openframe": OpenframePackageDef()
910
}
1011

0 commit comments

Comments
 (0)