Skip to content

Commit 9929f4e

Browse files
committed
bazel-orfs: ibex_sv update
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent aa611ef commit 9929f4e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

flow/designs/sky130hd/ibex/BUILD.bazel

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ orfs_flow(
88
"PLACE_DENSITY_LB_ADDON": "0.2",
99
"TNS_END_PERCENT": "100",
1010
"REMOVE_ABC_BUFFERS": "1",
11+
"SYNTH_HDL_FRONTEND": "slang",
12+
"VERILOG_INCLUDE_DIRS": "flow/designs/src/ibex_sv/vendor/lowrisc_ip/prim/rtl",
1113
},
1214
pdk = "@docker_orfs//:sky130hd",
1315
sources = {
1416
"SDC_FILE": [":constraint.sdc"],
1517
"FASTROUTE_TCL": ["fastroute.tcl"],
1618
},
1719
top = "ibex_core",
18-
verilog_files = ["//flow/designs/src/ibex:verilog"],
20+
verilog_files = ["//flow/designs/src/ibex_sv:verilog"],
1921
)
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
filegroup(
22
name = "verilog",
3-
srcs = glob(include = ["*.v"]),
3+
srcs = glob(include = [
4+
"**/*.sv",
5+
"**/*.svh",
6+
"**/*.v",
7+
]),
48
visibility = ["//visibility:public"],
59
)

0 commit comments

Comments
 (0)