We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17ba2cb + 8adcb9c commit 3bd387fCopy full SHA for 3bd387f
flow/designs/sky130hd/ibex/BUILD.bazel
@@ -0,0 +1,19 @@
1
+load("@bazel-orfs//:openroad.bzl", "orfs_flow")
2
+
3
+orfs_flow(
4
+ name = "ibex",
5
+ arguments = {
6
+ "ADDER_MAP_FILE": "",
7
+ "CORE_UTILIZATION": "45",
8
+ "PLACE_DENSITY_LB_ADDON": "0.2",
9
+ "TNS_END_PERCENT": "100",
10
+ "REMOVE_ABC_BUFFERS": "1",
11
+ },
12
+ pdk = "@docker_orfs//:sky130hd",
13
+ sources = {
14
+ "SDC_FILE": [":constraint.sdc"],
15
+ "FASTROUTE_TCL": ["fastroute.tcl"],
16
17
+ top = "ibex_core",
18
+ verilog_files = ["//designs/src/ibex:verilog"],
19
+)
flow/designs/src/ibex/BUILD.bazel
@@ -0,0 +1,5 @@
+filegroup(
+ name = "verilog",
+ srcs = glob(include = ["*.v"]),
+ visibility = ["//visibility:public"],
0 commit comments