forked from wtfuzz/hyperbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperbus.core
64 lines (56 loc) · 1.42 KB
/
hyperbus.core
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
CAPI=2:
name : ::hyperbus:1.0
description: "Hyperbus Memory Controller"
filesets:
rtl:
files:
- rtl/verilog/ioddr.v
- rtl/verilog/hyperbus.v
- rtl/verilog/hyperbus_fifo.v
- rtl/verilog/hyperbus_wishbone.v
file_type: verilogSource
depend:
- async_fifo
constraints:
files:
- data/hyperbus.sdc: {file_type: SDC}
tb:
files:
- tb/hyperbus_tb.v
- tb/hyperbus_fifo_tb.v
file_type: verilogSource
tb_verilator:
files:
- tb/hyperbus_test.cpp
file_type: cppSource
tb_verilator_fifo:
files:
- tb/hyperbus_fifo_test.cpp
file_type: cppSource
targets:
sim:
default_tool: verilator
filesets:
- rtl
- tb
- tb_verilator
toplevel: [hyperbus_test_top]
tools:
verilator:
verilator_options : [--trace, -Wno-WIDTH, -DEXCLUDE_ALTDDIO]
sim_fifo:
default_tool: verilator
filesets:
- rtl
- tb
- tb_verilator_fifo
toplevel: [hyperbus_fifo_test_top]
tools:
verilator:
verilator_options : [--trace, -Wno-WIDTH, -DEXCLUDE_ALTDDIO]
default: &base
filesets: [rtl, constraints]
#provider:
# name: github
# user: wtfuzz
# repo: hyperbus