-
Notifications
You must be signed in to change notification settings - Fork 0
/
arisco.core
55 lines (50 loc) · 1.24 KB
/
arisco.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
CAPI=2:
name: namosca:arisco:core:0.0.1
description: RV32I Core made for learning and fun
filesets:
rtl:
files:
- alu.v
- multiple_instructions.v
- pc.v
- register_memory.v
- single_instruction.v
file_type: verilogSource
tb:
files:
- alu_tb.v
- consecutive_instructions_tb.v
- pc_tb.v
- register_memory_tb.v
- instructions_i_tb.v
- single_instruction_tb.v
- utilities.v: {is_include_file: true}
file_type: verilogSource
targets:
# The "default" target is special in FuseSoC and used in dependencies.
# The "&default" is a YAML anchor referenced later.
default: &default
filesets:
- rtl
toplevel: CPU
# The "sim" target simulates the design. (It could have any name.)
sim:
# Copy all key/value pairs from the "default" target.
<<: *default
description: Simulate the design
default_tool: icarus
filesets_append:
- tb
toplevel: consecutive_instructions_tb
tools:
icarus:
iverilog_options:
- -g2012 # Use SystemVerilog-2012
modelsim:
vlog_options:
- -timescale=1ns/1ns
# provider:
# name : github
# user : racerxdl
# repo : riskow
# version : v0.0.1