forked from pulp-platform/cluster_icache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bender.yml
44 lines (41 loc) · 1.67 KB
/
Bender.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2024 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
package:
name: cluster_icache
authors:
- "Fabian Schuiki <[email protected]>"
- "Florian Zaruba <[email protected]>"
- "Paul Scheffler <[email protected]>"
- "Samuel Riedel <[email protected]>"
- "Michael Rogenmoser <[email protected]>"
dependencies:
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.28.0 }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.2.11 }
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.39.1 }
scm: { git: "https://github.com/pulp-platform/scm.git", version: 1.1.0 }
sources:
# Source files grouped in levels. Files in level 0 have no dependencies on files in this
# package. Files in level 1 only depend on files in level 0, files in level 2 on files in
# levels 1 and 0, etc. Files within a level are ordered alphabetically.
# Level 0
- src/snitch_icache_pkg.sv
- src/riscv_instr_branch.sv
- src/multi_accept_rr_arb.sv
# Level 1
- src/snitch_axi_to_cache.sv
- src/snitch_icache_l0.sv
- src/snitch_icache_refill.sv
- src/snitch_icache_lfsr.sv
- src/snitch_icache_tag.sv
- src/snitch_icache_data.sv
- src/snitch_icache_lookup_parallel.sv
# Level 2
- src/snitch_icache_handler.sv
# Level 3
- src/snitch_icache.sv
- src/snitch_read_only_cache.sv
- target: test
files:
- test/snitch_icache_l0_tb.sv
- test/snitch_read_only_cache_tb.sv