Skip to content

Commit

Permalink
sram: mix .lib and .lef files
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Sep 18, 2024
1 parent 555ac5f commit eefd28e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions sram/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,30 @@ orfs_flow(
verilog_files = ["//sram:fakeram/top.v"],
)

# buildifier: disable=duplicated-name
orfs_flow(
name = "top",
variant="mix",
abstract_stage = "grt",
args = FAST_SETTINGS | {
"SDC_FILE": "$(location //sram:fakeram/constraints-sram.sdc)",
"DIE_AREA": "0 0 30 30",
"CORE_AREA": "2 2 28 28",
"RTLMP_FLOW": "True",
"CORE_MARGIN": "2",
"MACRO_PLACE_HALO": "2 2",
"ADDITIONAL_LEFS": "$(location :results/asap7/sdq_17x64/base/sdq_17x64.lef)",
"ADDITIONAL_LIBS": "$(location //sram:fakeram/sdq_17x64.lib)",
},
sources = {
"ADDITIONAL_LEFS" : [":results/asap7/sdq_17x64/base/sdq_17x64.lef"],
"ADDITIONAL_LIBS" : ["//sram:fakeram/sdq_17x64.lib"],
"SDC_FILE": ["//sram:fakeram/constraints-sram.sdc"],
},
verilog_files = ["//sram:fakeram/top.v"],
)


# buildifier: disable=duplicated-name
orfs_flow(
name = "sdq_17x64",
Expand Down

0 comments on commit eefd28e

Please sign in to comment.