Skip to content

Commit

Permalink
Fix dictionary order
Browse files Browse the repository at this point in the history
  • Loading branch information
ericastor committed Jun 6, 2024
1 parent bcc64d7 commit e38e933
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dependency_support/com_google_skywater_pdk/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ skywater_cell_library = rule(
"default_corner": attr.string(
mandatory = True,
),
"default_input_driver_cell": attr.string(
default = "",
doc = "Cell to assume drives primary input nets",
),
"default_output_load": attr.string(
default = "",
doc = "Cell to assume is being driven by each primary output",
),
"openroad_configuration": attr.label(
providers = [OpenRoadPdkInfo],
),
Expand All @@ -127,14 +135,6 @@ skywater_cell_library = rule(
allow_single_file = True,
doc = "The tech lef file for these standard cells",
),
"default_input_driver_cell": attr.string(
default = "",
doc = "Cell to assume drives primary input nets",
),
"default_output_load": attr.string(
default = "",
doc = "Cell to assume is being driven by each primary output",
),
},
)

Expand Down

0 comments on commit e38e933

Please sign in to comment.