Skip to content

Commit ef4ccc8

Browse files
committed
bazel: add designs/asap7/gcd RULES_JSON
strip down asap7/gcd to the simplest example. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
1 parent 7b84e4a commit ef4ccc8

File tree

2 files changed

+21
-47
lines changed

2 files changed

+21
-47
lines changed

flow/designs/asap7/gcd/BUILD

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
load("@bazel-orfs//:openroad.bzl", "orfs_flow")
2+
3+
orfs_flow(
4+
name = "gcd",
5+
arguments = {
6+
# Faster builds
7+
"SKIP_INCREMENTAL_REPAIR": "1",
8+
"GPL_TIMING_DRIVEN": "0",
9+
"SKIP_LAST_GASP": "1",
10+
# Various
11+
"DIE_AREA": "0 0 16.2 16.2",
12+
"CORE_AREA": "1.08 1.08 15.12 15.12",
13+
"PLACE_DENSITY": "0.35",
14+
},
15+
sources = {
16+
"RULES_JSON": [":rules-base.json"],
17+
"SDC_FILE": [":constraint.sdc"],
18+
},
19+
verilog_files = ["//designs/src/gcd:verilog"],
20+
tags = ["manual"],
21+
)

flow/designs/asap7/gcd/BUILD.bazel

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)