mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-23 05:17:12 -04:00
The keys in this file get incorporated into the FlowCfg object that represents a simulation or similar. Adding a spurious key won't cause any problems, but we actually need it for the next commit, which grabs the current version of dvsim from OpenTitan. That version of dvsim expects the "book" key to have been set in common_project_cfg.hjson. Splitting the two commits like this should make it a bit more obvious where things have come from.
24 lines
758 B
Text
24 lines
758 B
Text
// Copyright lowRISC contributors.
|
|
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
{
|
|
project: ibex
|
|
|
|
// These keys are expected by dvsim.py, so we have to set them to something.
|
|
book: bogus.book.domain
|
|
doc_server: bogus.doc.server
|
|
results_server: bogus.results.server
|
|
results_html_name: report.html
|
|
|
|
// Default directory structure for the output
|
|
scratch_base_path: "{scratch_root}/{dut}.{flow}.{tool}"
|
|
scratch_path: "{scratch_base_path}/{branch}"
|
|
tool_srcs_dir: "{scratch_path}/{tool}"
|
|
|
|
// Common DVSIM data structures
|
|
build_pass_patterns: []
|
|
build_fail_patterns: []
|
|
|
|
// The current design level
|
|
design_level: "ip"
|
|
}
|