Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add license & package definition to ASAP7. #269

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,26 @@ By default if not otherwise explicitly specified the default selection will be
the 7.5 track library using RVT transistors and slow corner.
"""

load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cell_library")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cells_files")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_srams_files")
load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_license//rules:license.bzl", "license")

# Arizona State Predictive PDK and Cell Library
package(
default_applicable_licenses = ["@org_theopenroadproject_asap7sc6t_26//:license"],
default_visibility = ["//visibility:public"],
)

license(
name = "license",
package_name = "asap7sc6t_26",
)

licenses(["notice"])

exports_files(["LICENSE"])

# From org_theopenroadproject_asap7sc6t_26/cells-lvt.bzl
""" ASAP7 "rev 26" 6 track standard cell library using low VT transistors """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,26 @@ By default if not otherwise explicitly specified the default selection will be
the 7.5 track library using RVT transistors and slow corner.
"""

load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cell_library")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cells_files")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_srams_files")
load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_license//rules:license.bzl", "license")

# Arizona State Predictive PDK and Cell Library
package(
default_applicable_licenses = ["@org_theopenroadproject_asap7sc7p5t_27//:license"],
default_visibility = ["//visibility:public"],
)

license(
name = "license",
package_name = "asap7sc7p5t_27",
)

licenses(["notice"])

exports_files(["LICENSE"])

# From org_theopenroadproject_asap7sc7p5t_27/cells-lvt.bzl
""" ASAP7 "rev 27" 7.5 track standard cell library using Low VT transistors """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,26 @@ By default if not otherwise explicitly specified the default selection will be
the 7.5 track library using RVT transistors and slow corner.
"""

load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cell_library")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_cells_files")
load("@rules_hdl//dependency_support/org_theopenroadproject_asap7_pdk_r1p7:asap7.bzl", "asap7_srams_files")
load("@rules_hdl//pdk:open_road_configuration.bzl", "open_road_pdk_configuration")
load("@rules_license//rules:license.bzl", "license")

# Arizona State Predictive PDK and Cell Library
package(
default_applicable_licenses = ["@org_theopenroadproject_asap7sc7p5t_28//:license"],
default_visibility = ["//visibility:public"],
)

license(
name = "license",
package_name = "asap7sc7p5t_28",
)

licenses(["notice"])

exports_files(["LICENSE"])

# From org_theopenroadproject_asap7sc7p5t_28/cells-lvt.bzl
""" ASAP7 "rev 28" 7.5 track standard cell library using Low VT transistors """
Expand Down
Loading